I am currently trying to implement OWL2 RL via Rete algorithm. I have run into the following issue: How to implement lists needed for example in this rule: eq-diff2 (W3C reccomendation)?

Thanks.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

I have developed this solution.

  1. 1) Before inference construct the lists in memory. It is simple, because the elements can be easily identified.
  2. Construct RETE nodes fot first m rules, which dont need "loop" construct
  3. Put an action in the last node:

    1. Add new Rete (alpha+beta) nodes fot the corresponding list (you will always know which, because its one of the "static" rules)
    2. Put corresponding WMEs into newly created alpha memories
    3. Activate Beta nodes
  4. It is probably possible to remove the whole "dynamic" branch after the final action is performed.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.