<p>Hello,<br> <br>When using the following two rules with an empty working memory both rules get fired:<br> <br>===================================<br>rule rule1<br>when <br> not Person(gender == Consts.Unknown)
<br>then<br> System.out.println("rule1");<br>end<br>rule rule2<br>when<br> exists Person(gender == Consts.Unknown)<br>then<br> System.out.println("rule2");<br>end<br>===================================
</p>
<p>.<br>Can anyone help me with this?<br> <br>Thanks<br></p>