[rules-users] Firing a rule if at least its two conditions are satified

PAYET, Manuel manuel.payet at capgemini.com
Thu Jun 3 09:38:27 EDT 2010


By the "solutions given" I didn't mean to tell mine was good, apparently it's not, I was talking about the other ones.

-----Message d'origine-----
De : rules-users-bounces at lists.jboss.org [mailto:rules-users-bounces at lists.jboss.org] De la part de PAYET, Manuel
Envoyé : jeudi 3 juin 2010 15:33
À : Rules Users List
Objet : Re: [rules-users] Firing a rule if at least its two conditions are satified

The solutions given are useable anyway,
Thanks for this information GreG

-----Message d'origine-----
De : rules-users-bounces at lists.jboss.org [mailto:rules-users-bounces at lists.jboss.org] De la part de Greg Barton Envoyé : jeudi 3 juin 2010 15:29 À : Rules Users List Objet : Re: [rules-users] Firing a rule if at least its two conditions are satified

This will not work.  Rules will not predictably react to changes in global variables.  Use an object in working memory.

GreG

On Jun 3, 2010, at 7:15, "PAYET, Manuel" <manuel.payet at capgemini.com> wrote:

If I were you, I'd use something like 

Global java.lang.Integer cnt;

Rule "before everything"
Salience 10
When
Eval(true)
Then
Cnt=0
End


Rule "condition A"
When
condition A
Then
 cnt=cnt+1;
End

Rule "condition B"
When
condition B
Then
 cnt=cnt+1;
End

Rule "condition C"
When
condition B
Then
 cnt=cnt+1;
End


Rule "action 1, after everything"
Salience -10
When 
   eval(cnt>=2)
Then
   execute action 1
End


Of course, if you change the fact, you'll probably have to think about things like lock-on-active to increment only one time the cnt variable


-----Message d'origine-----
De : rules-users-bounces at lists.jboss.org [mailto:rules-users-bounces at lists.jboss.org] De la part de skasab2s Envoyé : jeudi 3 juin 2010 14:04 À : rules-users at lists.jboss.org Objet : [rules-users] Firing a rule if at least its two conditions are satified


Hello,

we are using Drools in our company. We have a rule with three conditions in this format:

when
    Condition A
    Condition B
    Condition C
then 
    execute Action 1

Now we have a situation, in which the rule should fire if AT LEAST two of the three conditions are satisfied. Do you know how to implement this? Any ideas or hints?

Many thanks and regards!

skasab2s.




--
View this message in context: http://drools-java-rules-engine.46999.n3.nabble.com/Firing-a-rule-if-at-least-its-two-conditions-are-satified-tp867432p867432.html
Sent from the Drools - User mailing list archive at Nabble.com.
_______________________________________________
rules-users mailing list
rules-users at lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-users






This message contains information that may be privileged or confidential and is the property of the Capgemini Group. It is intended only for the person to whom it is addressed. If you are not the intended recipient, you are not authorized to read, print, retain, copy, disseminate, distribute, or use this message or any part thereof. If you receive this message in error, please notify the sender immediately and delete all copies of this message.


_______________________________________________
rules-users mailing list
rules-users at lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-users



      

_______________________________________________
rules-users mailing list
rules-users at lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-users






This message contains information that may be privileged or confidential and is the property of the Capgemini Group. It is intended only for the person to whom it is addressed. If you are not the intended recipient, you are not authorized to read, print, retain, copy, disseminate, distribute, or use this message or any part thereof. If you receive this message in error, please notify the sender immediately and delete all copies of this message.


_______________________________________________
rules-users mailing list
rules-users at lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-users






This message contains information that may be privileged or confidential and is the property of the Capgemini Group. It is 
intended only for the person to whom it is addressed. If you are not the intended recipient, you are not authorized to 
read, print, retain, copy, disseminate, distribute, or use this message or any part thereof. If you receive this message 
in error, please notify the sender immediately and delete all copies of this message.





More information about the rules-users mailing list