This page (revision-16) was last changed on 06-Jun-2017 09:17 by Albrecht Striffler

This page was created on 17-Dec-2012 14:42 by Markus Friedrich

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note
16 06-Jun-2017 09:17 6 KB Albrecht Striffler to previous
15 11-May-2016 14:14 6 KB Albrecht Striffler to previous | to last
14 03-May-2016 12:06 6 KB Albrecht Striffler to previous | to last
13 17-Mar-2015 08:02 6 KB Markus Friedrich to previous | to last
12 12-Mar-2015 01:45 6 KB Albrecht Striffler to previous | to last
11 12-Mar-2015 01:42 6 KB Albrecht Striffler to previous | to last
10 26-Feb-2015 11:50 6 KB Albrecht Striffler to previous | to last
9 25-Feb-2013 14:43 6 KB Albrecht Striffler to previous | to last
8 25-Feb-2013 13:00 6 KB Albrecht Striffler to previous | to last
7 25-Feb-2013 12:50 6 KB Albrecht Striffler to previous | to last
6 25-Feb-2013 12:50 6 KB Albrecht Striffler to previous | to last
5 18-Feb-2013 12:53 6 KB Albrecht Striffler to previous | to last
4 17-Dec-2012 17:45 6 KB constin to previous | to last
3 17-Dec-2012 14:56 6 KB Markus Friedrich to previous | to last
2 17-Dec-2012 14:49 5 KB Markus Friedrich to previous | to last
1 17-Dec-2012 14:42 5 KB Markus Friedrich to last

Page References

Incoming links Outgoing links

Version management

Difference between version and

At line 1 removed 2 lines
[{TableOfContents }]
At line 6 changed one line
During a problem-solving session you enter Question-Value pairs ([Fact|https://isci.informatik.uni-wuerzburg.de/javadoc/d3web/de/d3web/core/session/blackboard/Fact.html]) and the system will derive appropriate solutions for the entered facts.
During a problem-solving session you enter Question-Value pairs (facts) and the system will derive appropriate solutions for the entered facts.
At line 8 removed one line
At line 11 changed 2 lines
Sessions are represented by instances of {{Session}}.
Use the {{SessionFactory}} to quickly create a new {{Session}} instance for the {{KnowledgeBase}} instance:
Case sessions are represented by instances of {{Session}}.
Use the {{SessionFactory}} to quickly create a new {{Session}} instance for the {{KnowledgeBase}} instance with name {{knowledgeBase}}:
At line 20 removed one line
At line 23 changed 2 lines
The [Interview|https://isci.informatik.uni-wuerzburg.de/javadoc/d3web/de/d3web/core/session/interviewmanager/Interview.html], which can be accessed from the session by using the interview problem solver (PSMethod), determines the next question to be presented to the user. More precisely, a {{FormStrategy}} computes the next {{From}} that is presented in the dialog.
A Form consists of a title and a list of active questions:
The {{Interview}}, instantiated with the Session, determines the next question to be presented to the user. More precisely, a {{FormStrategy}} computes the next {{From}} that is presented in the dialog.
A Form consists of a title and an {{interviewObject}} (a Question of a QContainer):
At line 28 changed 3 lines
Interview interview = session.getSessionObject(session.getPSMethodInstance(PSMethodInterview.class));
Form form = interview.nextForm();
List<Question> activeQuestions = form.getActiveQuestions();
Form form = session.getInterview().nextForm();
InterviewObject interviewObject = form.getInterviewObject();
At line 38 changed one line
interview.setFormStrategy(new NextUnansweredQuestionFormStrategy());
session.getInterviewManager().setFormStrategy(new NextUnansweredQuestionFormStrategy());
At line 38 added one line
At line 49 changed 6 lines
Question question = kb.getManager().searchQuestion("QuestionName");
ChoiceValue value = new ChoiceValue("ChoiceName");
Fact fact = FactFactory.createFact(session, question, value,
PSMethodUserSelected.getInstance(),
PSMethodUserSelected.getInstance());
Fact fact = FactFactory.createFact(question, value,
PSMethodUserSelected.getInstance(),
PSMethodUserSelected.getInstance());
At line 58 changed one line
At line 62 removed one line
At line 68 removed one line
At line 71 changed 2 lines
for (Solution solution : knowledgeBase.getManager().getSolutions()) {
Rating state = session.getBlackboard().getRating(solution);
for (Solution solution : knowledgeBase.getSolutions()) {
Rating state = session.getBlackboard().getState(solution);
At line 79 removed one line
Sometimes it is easier (and a bit faster) to just get all solutions in a particular state, e.g. all established solutions:
At line 81 removed 10 lines
%%prettify
{{{
out.println("All established solutions:");
for (Solution solution : session.getBlackboard().getSolutions(Rating.State.ESTABLISHED)) {
out.println(solution);
}
}}}
/%
At line 103 changed one line
Please note, that the session manages a {{Protocol}}, where entered findings (question/value tuples) are stored in a chronological order.
Please note, that the session manages a {{Protocol}}, where all entered findings (question/value tuples) are stored in a chronological order.
At line 110 removed one line
At line 115 changed one line
At line 117 changed 2 lines
// Create a case (problem-solving session and set
// all specified question/answers
// Create a case (problem-solving session and set all specified
// question/answers
At line 123 changed 2 lines
Fact fact1 = FactFactory.createUserEnteredFact(
pregnant, yes);
Fact fact1 = FactFactory.createFact(pregnant, yes, PSMethodUserSelected
.getInstance(), PSMethodUserSelected.getInstance());
At line 128 changed 2 lines
Fact fact2 = FactFactory.createUserEnteredFact(
weight, new NumValue(80));
Fact fact2 = FactFactory.createFact(weight, new NumValue(80),
PSMethodUserSelected.getInstance(),
PSMethodUserSelected.getInstance());
At line 132 changed one line
At line 135 changed 3 lines
for (Solution solution : knowledgeBase.getManager().getSolutions()) {
Rating state = session.getBlackboard().getRating(solution);
if (!state.hasState(Rating.State.UNCLEAR)) {
for (Solution solution : knowledgeBase.getSolutions()) {
Rating state = session.getBlackboard().getState(solution);
if (!state.hasState(Rating.State.UNCLEAR))
At line 139 removed one line
}
At line 153 changed 2 lines
// -- pregnant [oc]
// -- weight [num]
// - pregnant [oc]
// - weight [num]
At line 158 changed 2 lines
KnowledgeBase kb = KnowledgeBaseUtils.createKnowledgeBase();
QASet root = kb.getRootQASet();
KnowledgeBaseManagement kbm = KnowledgeBaseManagement.createInstance();
QASet root = kbm.getKnowledgeBase().getRootQASet();
At line 161 changed 4 lines
demoQuestions = new QContainer(root, "demoQuestions");
pregnant = new QuestionOC(demoQuestions, "pregnant", "yes", "no");
yes = new ChoiceValue(KnowledgeBaseUtils.findChoice(pregnant, "yes"));
weight = new QuestionNum(demoQuestions, "weight");
demoQuestions = kbm.createQContainer("demoQuestions", root);
pregnant = kbm.createQuestionOC("pregnant", demoQuestions, new String[] { "yes",
"no" });
yes = new ChoiceValue(kbm.findChoice(pregnant, "yes"));
weight = kbm.createQuestionNum("weight", "weight", demoQuestions);
At line 166 changed 2 lines
dangerousMood = new Solution(kb.getRootSolution(), "dangerousMood");
dangerousMood = kbm.createSolution("dangerousMood");
At line 169 changed 4 lines
kb.setInitQuestions(Arrays.asList(demoQuestions));
// Define the magic rule: preganant=yes AND weight > 70 => dangerousMood
// (P7)
kbm.getKnowledgeBase().setInitQuestions(Arrays.asList(demoQuestions));
// Define the magic rule: preganant=yes AND weight > 70 => dangerousMood (P7)
At line 175 changed 4 lines
terms.add(new CondNumGreater(weight, (double) 70));
RuleFactory.createHeuristicPSRule(dangerousMood, Score.P7, new CondAnd(terms));
return kb;
terms.add(new CondNumGreater(weight, Double.valueOf(70)));
RuleFactory.createHeuristicPSRule("r1", dangerousMood, Score.P7, new CondAnd(terms));
return kbm.getKnowledgeBase();
At line 163 added one line
At line 184 changed one line
howto create Session
howto