Git Product home page Git Product logo

Comments (3)

noxdafox avatar noxdafox commented on August 20, 2024

This is not an issue of clipspy itself but rather the way RETE-based expert systems operate.

When facts are asserted within the engine, they will eventually satisfy the conditions for your rules to activate. As soon as a rule LHS is satisfied, the RHS gets placed within the agenda. The agenda can be represented as a stack of instructions to execute.

It is important to note that in CLIPS, the facts are evaluated against the rules LHS once asserted whereas the actions in the agenda are executed when (run) (in clipspy environment.run()) is called.

It is a responsibility of the rules developer to instruct the engine on how to sort the actions once they are placed in the agenda. CLIPS provides two mechanisms: the salience and the conflict resolution strategy.
The salience provides fine-grained control over the rules firing order allowing the user to hardcode their priority. The conflict resolution strategy instead, is the algorithm responsible to sort the agenda when rules have the same salience/priority.

You can find more information regarding the agenda, the salience and the conflict resolution strategy in the CLIPS Basic Programming Guide.

from clipspy.

srajan3012 avatar srajan3012 commented on August 20, 2024

why both rules are fired here instead of one rule if conflict resolution strategy is used in absence of salience?

from clipspy.

noxdafox avatar noxdafox commented on August 20, 2024

Please use GitHub for issues related to clipspy and not generic knowledge questions. For these matters, the CLIPS discussion forum and stackoverflow are much better suited.

If you assert all 3 facts, then you activate both rules and both will fire. You can easily test this on the CLIPS console.

$ clips
CLIPS (6.30 3/17/15)
CLIPS> (defrule rule1
  (fact 1)
  (fact 2)
=> (printout t "rule1"))
CLIPS> (defrule rule2
  (fact 1)
  (fact 3)
=> (printout t "rule2"))
CLIPS> (assert (fact 1))
<Fact-1>
CLIPS> (assert (fact 2))
<Fact-2>
CLIPS> (assert (fact 3))
<Fact-3>
CLIPS> (agenda)
0      rule2: f-1,f-3
0      rule1: f-1,f-2
For a total of 2 activations.
CLIPS> (run)
rule2rule1

Note how when printing the agenda content via (agenda), both rules are placed within and note how they are sorted as a stack (LIFO). This because the default conflict resolution strategy is depth. Changing it to breadth will provide opposite sorting.

$ clips
CLIPS (6.30 3/17/15)
CLIPS> (set-strategy breadth)
depth
CLIPS> (defrule rule1
  (fact 1)
  (fact 2)
=> (printout t "rule1"))
CLIPS> (defrule rule2
  (fact 1)
  (fact 3)
=> (printout t "rule2"))
CLIPS> (assert (fact 1))
<Fact-1>
CLIPS> (assert (fact 2))
<Fact-2>
CLIPS> (assert (fact 3))
<Fact-3>
CLIPS> (agenda)
0      rule1: f-1,f-2
0      rule2: f-1,f-3
For a total of 2 activations.
CLIPS> (run)
rule1rule2

from clipspy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.