Well say I have this rule

(defrule rule (declare ) =>)

When I type "(" inside "(declare)" I receive auto-loop,
no-focus,node-index-hash and salience. After manually inserting
"slot-specific" I receive error. I'm using Jess70b4, my Eclipse is 3.1.1.

At any rate I'd like to ask a more serious question. I have
some backchain-reactive template (say T). I have a rule which deals with
need-Ts':

(defrule rule1
    (need-T ...)
    =>
    ...
)

I'd like to modify the result after collecting some info from the knowledge
base:

(defrule rule2
    ?fact <- (T ...)
    ...
    =>
    (modify ?fact ...)
)

When rule2 issues I have rule1 rematched :(
I try to deal with this by modifying the LHS:

(defrule rule1
    (need-T ...)
    (not (T ...))
    =>
    ...
)

but I'm not sure whether it'll work correctly.

Thanks in advance,
Yuri

--------------------------------------------------------------------
To unsubscribe, send the words 'unsubscribe jess-users [EMAIL PROTECTED]'
in the BODY of a message to [EMAIL PROTECTED], NOT to the list
(use your own address!) List problems? Notify [EMAIL PROTECTED]
--------------------------------------------------------------------

Reply via email to