!!!Rules

At this page, one can find the documentation concerning rules.

[{TableOfContents title='Contents' numbered='true'}]

!!!Definition 
Rules can be defined as one means for creating derivation knowledge. 
Thereby, a basic syntax exists that can be slightly varied to create different types of rules. 
Those types substantially vary in their distinct rule actions and they are explained in more detail after the presentation of the basic syntax. 

!!!Syntax - Basics 
{{{%%Rule
IF (rc) 
THEN (rule action) 
%}}}Rules are defined by the ''Rule'' tag in KnowWE. The basic syntax is as follows (rc = [rule condition | Doc Conditions]):  

Since the Leeloo release it is possible to define more than one action to be executed for a rule. Different rule actions are separated by a semicolon in the THEN clause.
{{{%%Rule
IF (rc) 
THEN (action1; action2; action3) 
%}}} 

Furthermore it is possible to add an exception condition to the rule, like in the following example: 
{{{
IF (rc) 
THEN (rule action) 
EXCEPT (rc2) 
}}} 

It is also possible to define the ''EXCEPT(...)'' statement as ''AND NOT'' wihtin the ''IF'' clause. But ''EXCEPT(...)''  doesn't need to be evaluated, i.e. the rule will also fire even if the ''EXCEPT'' clause is not fulfilled.

The following operators can be used to build more complex expressions from simple [rule conditions | Doc Conditions]: 
* __NOT__( rc ) --- true, if rc does not apply 
* (rc) __AND__ (rc2) --- true, only if both rc and rc2 apply at the same time 
* (rc1) __OR__ (rc2) --- true, if at least one of rc and rc2 does apply 
\\ 
!!Using ''eval()''
''eval(...)'' expressions can also be used as rule condition if more than one question or complex formulas shall be used:
{{{
IF eval(questionA = questionB)
THEN (rule action)
}}}


{{{
IF eval(questionA = 2*x+b)
THEN (rule action)
}}}

or if a complex action shall be conducted

{{{
IF questionA < 2
THEN eval(questionB = max(questionC, questionD))
}}}

''eval(...)'' must not be used in combination with ''KNOWN/UNKOWN''
{{{ 
IF questionA = UNKNOWN
THEN questionB = 2
}}}

!!!Different rule types 
As previously mentioned, the different rule types vary in their rule actions, that is, the part of the rule following the ''THEN'' keyword. In the following the rule types available in KnowWE are listed and shortly explained. For a more detailed explanation and syntax examples please refer to the separate pages for each rule type. 

!!Scoring Rules 
Scoring rules (diagnosis rules) are used to assign specific score points to a solution. See the page about __[scoring rules. | Doc DiagnosisRule]__ for the syntax and an overview of the possible score points. 

!!Abstraction Rules 
It is possible to assign values to a question via abstraction rules. That way, the program sets certain answer values depending on those answer values provided by the user for previous questions. See the page about __[abstraction rules | Doc AbstractionRule]__ for the syntax and further detail. 

!!Indication Rules 
Indication rules basically initiate the presentation of certain, subsequent questions or questionnaires to the user depending on previously provided answers. For syntax and further detail see the page about __[indication rules | Doc IndicationRule]__. 


%%tags
 Documentation rule 
%