Re: [rules-users] evaluation of null not consistent

2010-04-20 Thread LJ in NJ
As I understand it the two forms would in this case be equivalent. As it turns out, the syntax of the rule was not the problem. When running with Drools 5.0, it fails as I previously described. When compiled and run with the 5.1 Milestone 1 build, however, everything works fine. -- View this mess

Re: [rules-users] evaluation of null not consistent

2010-04-16 Thread Jared Davis
I don't follow this line in the rule: instance_1_Track : Track($var_1_aou : aouAsFloat != null && $var_3_platform_ptr : platform != null ) Should it be the following? instance_1_Track : Track($var_1_aou : aouAsFloat != null , $var_3_platform_ptr : platform != null ) -- View this message in c

[rules-users] evaluation of null not consistent

2010-04-16 Thread LJ in NJ
Hi; I am trying to debug a situation in which a rule fires when it should not. The rule is: rule "DTR2_AOU_Mapping" when when instance_0_Contact : Contact($var_0_guid : guid != null ) instance_1_Track : Track($var_1_aou : aouAsFloat != null && $var_3_platform_ptr : platf