如何删除 CLIPS 中多字段中的冗余?

发布于 2025-01-12 13:53:26 字数 238 浏览 0 评论 0原文

假设我们已经排序了多字段事实,例如:

(serie-1 7 7 5 5 1 1)
(serie-2 8 3 8 3 8 3)
(serie-3 6 4 9 4 6 2)

问题是从这个有序多字段事实中删除冗余字段以获得:

(serie-1 7 5 1)
(serie-2 8 3)
(serie-3 6 4 9 2)

问题是:如何进行?

Suppose we have ordered multifield facts such as:

(serie-1 7 7 5 5 1 1)
(serie-2 8 3 8 3 8 3)
(serie-3 6 4 9 4 6 2)

The problem is to remove redundant fields from this ordered multifield facts to obtain:

(serie-1 7 5 1)
(serie-2 8 3)
(serie-3 6 4 9 2)

The question is: how to proceed ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

愚人国度 2025-01-19 13:53:26
         CLIPS (6.4 2/9/21)
CLIPS> 
(deftemplate serie
   (slot id)
   (multislot nums))
CLIPS>    
(deffacts start
   (serie (id 1) (nums 7 7 5 5 1 1))
   (serie (id 2) (nums 8 3 8 3 8 3))
   (serie (id 3) (nums 6 4 9 4 6 2)))
CLIPS>    
(defrule remove
   ?s <- (serie (nums $?b ?n $?m ?n $?e))
   =>
   (modify ?s (nums $?b ?n $?m $?e)))
CLIPS> (reset)
CLIPS> (facts)
f-1     (serie (id 1) (nums 7 7 5 5 1 1))
f-2     (serie (id 2) (nums 8 3 8 3 8 3))
f-3     (serie (id 3) (nums 6 4 9 4 6 2))
For a total of 3 facts.
CLIPS> (run)
CLIPS> (facts)
f-1     (serie (id 1) (nums 7 5 1))
f-2     (serie (id 2) (nums 8 3))
f-3     (serie (id 3) (nums 6 4 9 2))
For a total of 3 facts.
CLIPS>
         CLIPS (6.4 2/9/21)
CLIPS> 
(deftemplate serie
   (slot id)
   (multislot nums))
CLIPS>    
(deffacts start
   (serie (id 1) (nums 7 7 5 5 1 1))
   (serie (id 2) (nums 8 3 8 3 8 3))
   (serie (id 3) (nums 6 4 9 4 6 2)))
CLIPS>    
(defrule remove
   ?s <- (serie (nums $?b ?n $?m ?n $?e))
   =>
   (modify ?s (nums $?b ?n $?m $?e)))
CLIPS> (reset)
CLIPS> (facts)
f-1     (serie (id 1) (nums 7 7 5 5 1 1))
f-2     (serie (id 2) (nums 8 3 8 3 8 3))
f-3     (serie (id 3) (nums 6 4 9 4 6 2))
For a total of 3 facts.
CLIPS> (run)
CLIPS> (facts)
f-1     (serie (id 1) (nums 7 5 1))
f-2     (serie (id 2) (nums 8 3))
f-3     (serie (id 3) (nums 6 4 9 2))
For a total of 3 facts.
CLIPS>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文