[rules-users] newbie question on "when" condition syntax

Raffi Khatchadourian khatchad at cse.ohio-state.edu
Fri May 2 07:36:18 EDT 2008


On Fri  2.May'08 at 10:05:20 +0100, Anstis, Michael (M.) wrote:
>The "when" section matches fact (object) patterns, so your requirement
>could be written as:-
> 
>when there is a Test Fact 'A' and another Test Fact 'B' where "the 'x'
>property of 'A'" equals "the 'y' property of fact 'B' plus 1" then.....
> 
>This would become:-
> 
>rule "Rule 1"
>when
>    Test( $y : y )
>    Test( x == ($y + 1) )

Could you combine these conditions? As in:

when
	Test($y : y, x == $y + 1)
//...



More information about the rules-users mailing list