Re: [rules-users] Help write rule drools

2014-06-04 Thread nill
Thank you very much!



--
View this message in context: 
http://drools.46999.n3.nabble.com/Help-write-rule-drools-tp4029841p4029873.html
Sent from the Drools: User forum mailing list archive at Nabble.com.
___
rules-users mailing list
rules-users@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-users


Re: [rules-users] Help write rule drools

2014-06-04 Thread nill
I try to explain. I have a graph where each node can have only one connection
to the other. 
If I check the presence of n links between two nodes then delete n-1
connections.



--
View this message in context: 
http://drools.46999.n3.nabble.com/Help-write-rule-drools-tp4029841p4029869.html
Sent from the Drools: User forum mailing list archive at Nabble.com.
___
rules-users mailing list
rules-users@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-users


Re: [rules-users] Help write rule drools

2014-06-04 Thread nill
One for each pair of connected nodes. 



--
View this message in context: 
http://drools.46999.n3.nabble.com/Help-write-rule-drools-tp4029841p4029848.html
Sent from the Drools: User forum mailing list archive at Nabble.com.
___
rules-users mailing list
rules-users@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-users


[rules-users] Help write rule drools

2014-06-04 Thread nill
My structure is composed of 2 classes (Node, Link)
class Node {
List  out;
List  in;
}
class Link {
Source node;
Target node;
}

they are inserted as facts in working memory.

I have to write a rule that will unite for each node joins the links that
have the same destination, and if there is then the inverse must also join
the latter.

eg.
A - link1 -> B
A - link2 -> B
A - link3 -> C
C - link4 -> D
B - link5 -> A

result
A - link1 + link2 +link5 -> B
A - link3 -> C
C - link4 -> D

Can anyone help me?



--
View this message in context: 
http://drools.46999.n3.nabble.com/Help-write-rule-drools-tp4029841.html
Sent from the Drools: User forum mailing list archive at Nabble.com.
___
rules-users mailing list
rules-users@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-users