python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Given the initial working memory WM={(lista e b a c d e a) (lista1 a c a d e e f g)} and the rule R1, show the state of the final WM
(defrule R1
?f <‐ (lista $?x ?a $?y)
(lista1 $?p ?a $?q ?a $?r)
=>
(retract ?f)
(assert (lista $?x $?y)))
A. {(lista e b a c d f g)...

post office
Votes: 0
Answers: 1
CLIPS rule not firing
Tried to run this code in CLIPS over and over but the rule won't fire.
The rule has to take a finite state machine from its present state to its next state of the form (input ) and the states are repr...
popeye162
Votes: 0
Answers: 1
Can variables be created then used on the LHS?
I'm trying to learn CLIPS and this is a very basic question. I have facts for two people
(person (name "jim")(age 22)) and (person (name "sally")(age 32)) and I simply want a rule...
Wade Schuette
Votes: 0
Answers: 1