gpt4 book ai didi

CLIPS LHS 绑定(bind)变量

转载 作者:行者123 更新时间:2023-12-02 04:28:28 25 4
gpt4 key购买 nike

我正在尝试编写一个使用迭代深化算法来解决规划问题的 CLIPS 程序。出于同样的原因,我想保持较低的分支因子。

在以下代码中?s是表示树的级别的变量;我想使用一个规则来进行不同的检查。这就是我试图做的:

(defrule EXPAND::action
(declare (salience ?*load*))
(or
(and ?f1_a <- (status ?s transport ?c1&:(> ?c1 0) ?id1)
?f1_b <- (status ?s city ?q1&:(> ?q1 0) ))

(and ?f2_a <- (status ?s transport ?c2 ?id2)
?f2_b <- (status ?s city ?q2_a ?obj2)
?f2_c <- (status ?s carries ?id2 ?q2_b ?obj2))

(and ?f3_a <- (status ?s transport ?c3 ?id3)
?f3_b <- (status ?s city ?l3_a $?x3)
?f3_c <- (status ?s city ?l3_b $?y3)
?f3_d <- (distance ?l3_a ?d3 ?l3_b ?t3))
(test (neq (str-compare ?l3_a ?l3_b) 0))
)

=>

(if (and (fact-existp ?f1_a) (fact-existp ?f1_b))
then (assert bla1))

(if (and ?f2_a ?f2_b ?f2_c)
then (assert bla2))

(if (and ?f3_a ?f3_b ?f3_c ?f3_d)
then (assert bla3)
))

显然它不起作用。我想使用单个 and 的 bool 值的在 LHS 中将一些事实断言到规则的 RHS 中。

我怎样才能做到这一点?有任何想法吗?

最佳答案

条件元素通过为规则条件中的每个排列创建单独的规则来工作。每个排列都使用原始规则的 Action ,因此在规则 Action 中找到的每个变量都必须存在于每个排列中。

关于CLIPS LHS 绑定(bind)变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51323444/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com