0

你好剪辑我有这个模板:

(deftemplate cell(slot x)(slot y)(slot alive))

而这个事实:

(start 1 1)

然后我在 LHS 中有这个条款:

?start<-(start ?x ?y)

我想得到变量?a1

(cell (x (+ ?x 1) )(y ?y)(alive ?a1))

似乎不允许添加到变量中"(+ ?x 1)",所以我怎样才能实现我想要的。

4

1 回答 1

1
CLIPS> (deftemplate cell (slot x) (slot y) (slot alive)) 
CLIPS>  
(deffacts initial
    (start 1 1)
    (cell (x 2) (y 1) (alive yes)))
CLIPS>     
(defrule example
    (start ?x ?y)
    (cell (x =(+ ?x 1)) (y ?y) (alive ?a1))
    =>
    (printout t "?a1 = " ?a1 crlf))
CLIPS> (reset)
CLIPS> (run)
?a1 = yes
CLIPS> 
于 2011-02-17T17:16:46.940 回答