Why not use a Fact that contains your result?<br><br>In DRL terms it&#39;d look like this:-<br><br>rule &quot;one&quot;<br>    when<br>        $r : Result( $score : score )<br>        Applicant( numberOfLoans &gt; 1 )<br>    then<br>
        $r.setScore( $score + 5 );<br>        update( $r );<br>end<br><br>rule &quot;two&quot;<br>    when<br>        $r : Result( $score : score )<br>        Applicant( disposableIncome &lt; 20000 )<br>    then<br>        $r.setScore( $score + 10 );<br>
        update( $r );<br>end<br><br>The result could equally just contain the factors influencing the score with a low salience rule then calculating the final score:-<br><br>rule &quot;one&quot;<br>    salience 100<br>
    when<br>
        $r : Result()<br>
        Applicant( $nl : numberOfLoans )<br>
    then<br>
        $r.setNumberOfLoans( $nl );<br>
        update( $r );<br>
end<br>
<br>
rule &quot;two&quot;<br>
    salience 100<br>

    when<br>
        $r : Result()<br>
        Applicant( $di : disposableIncome )<br>
    then<br>
        $r.setDisposableIncome( $di );<br>
        update( $r );<br>
end<br><br>rule &quot;calculate score&quot;<br>    salience 200<br>    when<br>        $r : Result( $nl : numberOfLoans &gt; 1, $di : disposableIncome &lt; 20000 )<br>    then<br>        $r.setScore( 20 );<br>        update( $r );<br>
end<br><br><br><div class="gmail_quote">On 23 November 2011 09:44, lansyj <span dir="ltr">&lt;<a href="mailto:lansyjp@gmail.com">lansyjp@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
hi folks<br>
<br>
We are working on a requirement that requires us to have multiple rules that<br>
could fire for a given input and for all the rules that fire, we would want<br>
to cumulate the consequence to reach the final consequence.<br>
<br>
As an example, if we want to identify the credit score for a person, based<br>
on his gender you might want to assign/increment/decrement the score, then<br>
based on nationality, and so on.<br>
<br>
So, considering the long list of such criteria, having rules that cover all<br>
scenarios and are still mutually exclusive isnt a scalable solution. Could<br>
you please advice on how this could be achieved.<br>
<br>
We run Drools 5.1.1 and Guvnor; rules are made using the guided editor with<br>
DSLs.<br>
<br>
Awaiting your support,<br>
<br>
Best Regards<br>
<br>
-lj<br>
<span class="HOEnZb"><font color="#888888"><br>
--<br>
View this message in context: <a href="http://drools.46999.n3.nabble.com/Rules-that-cumulate-on-consequence-tp3530214p3530214.html" target="_blank">http://drools.46999.n3.nabble.com/Rules-that-cumulate-on-consequence-tp3530214p3530214.html</a><br>

Sent from the Drools: User forum mailing list archive at Nabble.com.<br>
_______________________________________________<br>
rules-users mailing list<br>
<a href="mailto:rules-users@lists.jboss.org">rules-users@lists.jboss.org</a><br>
<a href="https://lists.jboss.org/mailman/listinfo/rules-users" target="_blank">https://lists.jboss.org/mailman/listinfo/rules-users</a><br>
</font></span></blockquote></div><br>