gpt4 book ai didi

expert-system - 从 deffunction 中的多字段访问插槽

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

我有这个函数,它根据多个多字段事实的多个槽计算一些值。

因为涉及到相当多的插槽,并且函数中需要所有插槽,所以我在考虑是否可以将整个事实传递给函数并访问其中的插槽,像这样:

(deftemplate a-fact
(slot id)
(slot name)
(slot ...)
...
)

(deffunction a-funciton (?factadr)
(switch ?factadr:name
(case bla then ...)
)

(return ?calculated-value)
)

(defrule a-rule
?factadr <- (a-fact (id ?i))
=>
(if (> **(a-function ?factadr) 20) then ... )
)

我在这个示例中看到了这个 ?fact-adrres:slot-name 并认为它会起作用,但它没有。那么,是否可行以及如何实现?

(bind ?facts (find-all-facts ((?f attribute))
(and (eq ?f:name wine)
(>= ?f:certainty 20))))

使用 Clips 6.3。

最佳答案

使用事实槽值函数。

CLIPS> 
(deftemplate a-fact
(slot id)
(slot name))
CLIPS>
(defrule a-rule
?f <- (a-fact)
=>
(printout t (fact-slot-value ?f id) " " (fact-slot-value ?f name) crlf))
CLIPS> (assert (a-fact (id 3) (name x)))
<Fact-1>
CLIPS> (assert (a-fact (id 7) (name y)))
<Fact-2>
CLIPS> (run)
7 y
3 x
CLIPS>

关于expert-system - 从 deffunction 中的多字段访问插槽,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6176693/

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