This page (revision-11) was last changed on 13-Jun-2014 17:05 by Albrecht Striffler

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
11 13-Jun-2014 17:05 2 KB Albrecht Striffler to previous
10 13-Jun-2014 17:04 3 KB Albrecht Striffler to previous | to last
9 13-Jun-2014 17:02 3 KB Albrecht Striffler to previous | to last
8 13-Jun-2014 16:43 3 KB Albrecht Striffler to previous | to last
7 13-Jun-2014 16:40 3 KB Albrecht Striffler to previous | to last
6 13-Jun-2014 16:40 3 KB Albrecht Striffler to previous | to last
5 13-Jun-2014 16:39 3 KB Albrecht Striffler to previous | to last
4 13-Jun-2014 16:28 2 KB Albrecht Striffler to previous | to last
3 07-Nov-2013 10:36 2 KB Albrecht Striffler to previous | to last
2 17-Dec-2012 14:10 2 KB Tim Baier-Loewenstein to previous | to last
1 26-Oct-2012 10:15 2 KB Joachim Baumeister to last

Page References

Incoming links Outgoing links

Version management

Difference between version and

At line 24 removed one line
!! Using EXCEPT
At line 26 removed 11 lines
{{{
IF numerical question > 0
THEN average value = 20
EXCEPT warning = Yes
}}}
d3web KnowWE also allows the use of except conditions. Conditions defined after EXCEPT are used like you would expect. If the normal condition holds true, the action of the rule (the part written after THEN) is executed, but only the condition behind EXCEPT ist not true.
You might think:
At line 60 removed 9 lines
!!Combining Rules
Using such rules, we often not only want something to happen if the condition is true (e.g. temperature <= 0), but also when the condition is false. We can of course always do this, by writing a second rule, using the negated condition of the first rule (temperature > 0). With d3web KnowWE, we provide the possibility, to just use the keyword ELSE, similar to how it is known and done in software engineering.
{{{
IF temperature < 0
THEN icy roads = Yes
ELSE icy roads = No
}}}