More simple example:
package continuated_rules
dialect "mvel"
rule "fire_twice"
no-loop true
when
eval(true) or eval(true)
then
System.out.println("word");
end
output is:
word
word
why does it happens ?
--
View this message in context:
http://www.nabble.com/OR-operator-affects-how-many-times-Rule%27s-action-...
Sent from the drools - user mailing list archive at
Nabble.com.