[rules-users] Strange error in DRL compiler

ronalbury ronalbury at gmail.com
Tue Dec 13 10:58:06 EST 2011


The following RHS is valid:
	when
		$ea : EasyApp(agt_eaList.size < 1)

The following RHS is not valid:
	when
		$ea : EasyApp(agt_eaList.size < 1 || agt_eaList.size > 3) 

I have to do this to make the RHS valid:
	when
		$ea : EasyApp(agt_eaList.size() < 1 || agt_eaList.size() > 3) 

I'm not sure I understand why.

--
View this message in context: http://drools.46999.n3.nabble.com/Strange-error-in-DRL-compiler-tp3582691p3582691.html
Sent from the Drools: User forum mailing list archive at Nabble.com.



More information about the rules-users mailing list