This page (revision-7) was last changed on 07-Mar-2013 06:02 by Volker Belli

This page was created on 26-Oct-2012 10:15 by Joachim Baumeister

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
7 07-Mar-2013 06:02 1 KB Volker Belli to previous
6 07-Mar-2013 06:02 1 KB Volker Belli to previous | to last
5 17-Dec-2012 14:52 1 KB Tim Baier-Loewenstein to previous | to last
4 17-Dec-2012 14:50 1 KB Tim Baier-Loewenstein to previous | to last
3 17-Dec-2012 14:50 1 KB Tim Baier-Loewenstein to previous | to last
2 17-Dec-2012 14:09 1 KB Tim Baier-Loewenstein to previous | to last
1 26-Oct-2012 10:15 1 KB Joachim Baumeister to last

Page References

Incoming links Outgoing links

Version management

Difference between version and

At line 4 changed one line
Diagnosis rules are rules that assign scorepoints to diagnoses, which leads to a valuation of the diagnoses at the end of the problem-solving process. Basically, each diagnosis has a 'score account' that is initially set to 0. If diagnosis rules 'fire', that is if their condition part evaluates to true, they add a certain value to a diagnosis. If such a diagnosis attains a certain threshold value (in d3web this is 42) it rates as ''established''.
Diagnosis rules are rules that assign scorepoints to diagnoses, which leads to a valuation of the diagnoses at the end of the problem-solving process. Basically, each diagnosis has a 'score account' that is initially set to 0. If diagnosis rules 'fire', that is if their [condition | Doc Conditions] part evaluates to true, they add a certain value to a diagnosis. If such a diagnosis attains a certain threshold value (in d3web this is 42) it rates as ''established''.
At line 8 changed 4 lines
THEN diag1 = P3 }}}
The example shows the basic notation of diagnosis rules. If condition ''rc'' (which can either be a simple or a combined condition) evaluated to true the value P3 is added to the score account of ''diag1''.\\
THEN diag1 = P3 }}}The example shows the basic notation of diagnosis rules. If [condition | Doc Conditions] ''rc'' (which can either be [a simple or a combined condition | Doc Conditions]) evaluated to true the value P3 is added to the score account of ''diag1''.\\
At line 15 added 11 lines
Also the keywords ''suggested'', ''excluded'' and ''established'' can be used:
{{{%%Rule
IF solution = established
THEN diagnosis = 1
%}}}
{{{%%Rule
IF solution = excluded
THEN diagnosis = established
%}}}