作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在阅读 Learn Prolog Now! 's chapter on cuts同时是 Bratko 的 Prolog 人工智能编程,第 5 章:控制回溯。起初,cut 似乎是模仿其他编程语言中已知的 if-else 子句的直接方式,例如
# Find the largest number
max(X,Y,Y):- X =< Y,!.
max(X,Y,X).
false
在所有变量都被实例化的情况下,这段代码也会失败。 ,例如
?- max(2,3,2).
true.
max(X,Y,Z):- X =< Y,!, Y = Z.
max(X,Y,X).
!
意思是:'如果在此之前的所有内容
!
为真,停止终止,包括具有相同谓词的任何其他规则'。但是,这不可能是正确的,因为这意味着
Y = Z
的实例化只有在失败的情况下才会发生,这对于该规则是无用的。
max/3
的建议解决方案以上?
最佳答案
另见 this answer和 this question .
how should I read the proposed solution for max/3 above?
max(X,Y,Z):- X =< Y, !, Y = Z.
max(X,Y,X).
When
X =< Y
, forget the second clause of the predicate, and unifyY
andZ
.
关于prolog - 读一剪!在序言中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40933408/
我是一名优秀的程序员,十分优秀!