How do you remove one facts in CLIPS? The fact would be entered by a person and compared with the base was present, it deletes.
I tried so:
(defrule Deleting::ruleDeleteOneSynSoftgoal "This rule delete one synsoftagoal found in the basis of fact."
(declare (salience 42))
(printout t "Enter below the two softgoals field that want to be deleting:" crlf crlf
"the synonyms of the <[TYPE]QUALITY ATTRIBUTE> and the <[TOPIC]SUBJECT/OBJECT LAL> need to be entered one per line." crlf crlf)
(bind ?dsyntype (readline))
(bind ?dsyntopic (readline))
?fact3 <- (synSoftgoal
(ttId ?ttId3)
(syntopic ?syntopic3)
(syntype ?syntype3)
)
(test (and (eq ?dsyntopic ?syntopic3) (eq ?dsyntype ?syntype3)))
=>
(retract ?fact3
)
But, it is show this erro:
[PRNTUTIL2] Syntax Error: Check appropriate syntax for defrule.
ERROR:
(defrule Deleting::ruleDeleteOneSynSoftgoal "This rule delete one synsoftagoal found in the basis of fact."
(declare (salience 42))
(printout t "Enter below the two softgoals field that want to be deleting:" crlf crlf "the synonyms of the <[TYPE]QUALITY ATTRIBUTE> and the <[TOPIC]SUBJECT/OBJECT LAL> need to be entered one per line." crlf crlf)
(bind ?dsyntype (
Can you help me?