I think I follow you now. If I was a little smarter with my conditional statements to NOT keep assigning YES to something that is already set to YES then it would probably eliminate the loop. In other words if I added more checks like the ==null that you pointed out, I could (although I am not sure that they are bad) remove the no-loop settings. Right?<br>
<br>Thanks,<br><br>Bryan<br><br><div class="gmail_quote">On Mon, Nov 3, 2008 at 9:17 AM, Joe White <span dir="ltr">&lt;<a href="mailto:Joe.White@recondotech.com">Joe.White@recondotech.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">









<div link="blue" vlink="purple" lang="EN-US">

<div>

<p><span style="font-size: 11pt;">You
need no-loop on the rules because of the call to "modify(s)" . Modify changes
the&nbsp; fact in working memory and </span><span><span style="font-size: 11pt;">the engine is
automatically notified of the changes at the end of the modify block</span></span><span style="font-size: 11pt;">. After modify the
same rule could hit again as the conditions are still true.</span></p>

<p><span style="font-size: 11pt;">&nbsp;</span></p>

<p><span style="font-size: 11pt;">The
first rule doesn't need the no-loop it because of the check "</span>recommendPurchase
== null"</p>

<p>&nbsp;</p>

<p>Joe<span style="font-size: 11pt;"></span></p>

<p><span style="font-size: 11pt; color: rgb(31, 73, 125);">&nbsp;</span></p>

<div style="border-style: solid none none; border-color: rgb(181, 196, 223) -moz-use-text-color -moz-use-text-color; border-width: 1pt medium medium; padding: 3pt 0in 0in;">

<p><b><span style="font-size: 10pt;">From:</span></b><span style="font-size: 10pt;">
<a href="mailto:rules-users-bounces@lists.jboss.org" target="_blank">rules-users-bounces@lists.jboss.org</a>
[mailto:<a href="mailto:rules-users-bounces@lists.jboss.org" target="_blank">rules-users-bounces@lists.jboss.org</a>] <b>On Behalf Of </b>Bryan Hansen<br>
<b>Sent:</b> Sunday, November 02, 2008 8:21 PM<br>
<b>To:</b> <a href="mailto:rules-users@lists.jboss.org" target="_blank">rules-users@lists.jboss.org</a><br>
<b>Subject:</b> [rules-users] no-loop usage question</span></p>

</div><div><div></div><div class="Wj3C7c">

<p>&nbsp;</p>

<p>I have been reading through the documentation and trying
some of the tutorials and have a question about the no-loop attribute. <br>
<br>
Not really relevant to the post, but I figured I would mention it, I have been
following this post and updating it to use the current version of Drools. <a href="http://www.onjava.com/pub/a/onjava/2005/08/03/drools.html?page=7" target="_blank">http://www.onjava.com/pub/a/onjava/2005/08/03/drools.html?page=7</a>
<br>
<br>
I have written my rules as such:<br>
<br>
package org.drools.examples<br>
<br>
import org.drools.examples.StockOffer;<br>
<br>
rule PriceBelow100<br>
&nbsp;&nbsp;&nbsp; dialect &quot;java&quot; <br>
&nbsp;&nbsp;&nbsp; when<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; s: StockOffer( stockPrice &lt; 100
&amp;&amp; recommendPurchase == null )<br>
&nbsp;&nbsp;&nbsp; then<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; modify( s ) {<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
setRecommendPurchase(StockOffer.YES)<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }<br>
end<br>
<br>
rule NegativeStockPrice<br>
&nbsp;&nbsp;&nbsp; dialect &quot;java&quot; <br>
&nbsp;&nbsp;&nbsp; no-loop true<br>
&nbsp;&nbsp;&nbsp; when<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; s: StockOffer( stockPrice &lt; 0 )<br>
&nbsp;&nbsp;&nbsp; then<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; modify( s ) {<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
setRecommendPurchase(StockOffer.NO)<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }<br>
end&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <br>
<br>
rule DontBuyXYZStock<br>
&nbsp;&nbsp;&nbsp; dialect &quot;java&quot; <br>
&nbsp;&nbsp;&nbsp; no-loop true<br>
&nbsp;&nbsp;&nbsp; when<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; s: StockOffer(stockName ==
&quot;XYZ&quot; &amp;&amp; stockPrice &lt; 10 )<br>
&nbsp;&nbsp;&nbsp; then<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; modify( s ) {<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; setRecommendPurchase(StockOffer.YES)<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }<br>
end&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <br>
<br>
rule BuyXYZStock<br>
&nbsp;&nbsp;&nbsp; dialect &quot;java&quot; <br>
&nbsp;&nbsp;&nbsp; no-loop true<br>
&nbsp;&nbsp;&nbsp; when<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; s: StockOffer(stockName ==
&quot;XYZ&quot; &amp;&amp; stockPrice &gt; 10 )<br>
&nbsp;&nbsp;&nbsp; then<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; modify( s ) {<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
setRecommendPurchase(StockOffer.NO)<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }<br>
end&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <br>
<br>
<br>
<br>
My question is, why do I have to put no-loop on every rule (except for the
first). After the first time through the rules, it shouldn&#39;t be modifying to
where the rules would fire it again. Am I doing something wrong with how my
rules are written? My sample data is this:<br>
<br>
package org.drools.examples;<br>
<br>
import org.drools.examples.BusinessLayer;<br>
import org.drools.examples.StockOffer;<br>
<br>
import junit.framework.TestCase;<br>
<br>
/*<br>
&nbsp;* JUnit test for the business rules in the <br>
&nbsp;* application.<br>
&nbsp;* <br>
&nbsp;* This also acts a &#39;simulator&#39; for the business <br>
&nbsp;* rules - allowing us to specify the inputs,<br>
&nbsp;* examine the outputs and see if they match our <br>
&nbsp;* expectations before letting the code loose in&nbsp; <br>
&nbsp;* the real world.<br>
&nbsp;*/<br>
public class BusinessRuleTest extends TestCase {<br>
&nbsp;&nbsp;&nbsp; /**<br>
&nbsp;&nbsp;&nbsp; &nbsp;* Tests the purchase of a stock<br>
&nbsp;&nbsp;&nbsp; &nbsp;*/<br>
&nbsp;&nbsp;&nbsp; public void testStockBuy() throws Exception {<br>
<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; // Create a Stock with simulated values<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; StockOffer testOffer = new StockOffer();<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
testOffer.setStockName(&quot;MEGACORP&quot;);<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; testOffer.setStockPrice(22);<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; testOffer.setStockQuantity(1000);<br>
<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; // Run the rules on it<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
BusinessLayer.evaluateStockPurchase(testOffer);<br>
<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; // Is it what we expected?<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
assertTrue(testOffer.getRecommendPurchase() != null);<br>
<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
assertTrue(&quot;YES&quot;.equals(testOffer.getRecommendPurchase()));<br>
&nbsp;&nbsp;&nbsp; }<br>
<br>
&nbsp;&nbsp;&nbsp; /**<br>
&nbsp;&nbsp;&nbsp; &nbsp;* Tests the purchase of a stock makes sure the system
will not accept<br>
&nbsp;&nbsp;&nbsp; &nbsp;* negative numbers.<br>
&nbsp;&nbsp;&nbsp; &nbsp;*/<br>
&nbsp;&nbsp;&nbsp; public void testNegativeStockBuy() throws Exception {<br>
<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; // Create a Stock with our simulated
values<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; StockOffer testOffer = new StockOffer();<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
testOffer.setStockName(&quot;MEGACORP&quot;);<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; testOffer.setStockPrice(-22);<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; testOffer.setStockQuantity(1000);<br>
<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; // Run the rules on it<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; BusinessLayer.evaluateStockPurchase(testOffer);<br>
<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; // Is it what we expected?<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
assertTrue(&quot;NO&quot;.equals(testOffer.getRecommendPurchase()));<br>
&nbsp;&nbsp;&nbsp; }<br>
<br>
&nbsp;&nbsp;&nbsp; /**<br>
&nbsp;&nbsp;&nbsp; &nbsp;* Makes sure the system will buy stocks of XYZ corp
only if it really cheap<br>
&nbsp;&nbsp;&nbsp; &nbsp;*/<br>
&nbsp;&nbsp;&nbsp; public void testXYZStockBuy() throws Exception {<br>
<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; // Create a Stock with our simulated
values<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; StockOffer testOfferLow = new
StockOffer();<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; StockOffer testOfferHigh = new
StockOffer();<br>
<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
testOfferLow.setStockName(&quot;XYZ&quot;);<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; testOfferLow.setStockPrice(9);<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; testOfferLow.setStockQuantity(1000);<br>
<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
testOfferHigh.setStockName(&quot;XYZ&quot;);<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; testOfferHigh.setStockPrice(11);<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; testOfferHigh.setStockQuantity(1000);<br>
<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; // Run the rules on it and test<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
BusinessLayer.evaluateStockPurchase(testOfferLow);<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
assertTrue(&quot;YES&quot;.equals(testOfferLow.getRecommendPurchase()));<br>
<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
BusinessLayer.evaluateStockPurchase(testOfferHigh);<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
assertTrue(&quot;NO&quot;.equals(testOfferHigh.getRecommendPurchase()));<br>
&nbsp;&nbsp;&nbsp; }<br>
}<br>
<br>
<br>
I can post up all the code if this isn&#39;t enough to answer the question.<br>
<br>
Thanks!</p>

</div></div></div>

</div>


<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>
<br></blockquote></div><br>