存在算术运算符时 prolog 中的统一行为

发布于 2024-10-23 20:57:02 字数 269 浏览 0 评论 0原文

12 ?- 3+4*5 = X+Y.
X = 3,
Y = 4*5.

13 ?- 3+4*5 = X*Y.
false.

16 ?- 3*4+5 = X*Y.
false.

我在期待

13 ?- 3+4*5 = X*Y.
X = 3+4, Y = 5.

16 ?- 3*4+5 = X*Y.
X = 3, Y = 4+5.

是否存在一些“优先级”问题?我正在使用最新的 swi-prolog 版本。

12 ?- 3+4*5 = X+Y.
X = 3,
Y = 4*5.

13 ?- 3+4*5 = X*Y.
false.

16 ?- 3*4+5 = X*Y.
false.

I was expecting

13 ?- 3+4*5 = X*Y.
X = 3+4, Y = 5.

16 ?- 3*4+5 = X*Y.
X = 3, Y = 4+5.

Is there some "precedence" problem? I'm using the last swi-prolog release.

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

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

发布评论

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

评论(2

听,心雨的声音 2024-10-30 20:57:03

是的,您需要考虑一个优先级问题。

Prolog 为每个定义的运算符附加一个数字优先级值,以便其解析可以自动处理(例如,3+4*5),就像使用括号来表示 3+(4*5) 一样。

因此,您的第一个示例按预期工作,但第二个或第三个示例则不然。根本没有办法统一这些术语,因此 Prolog 返回 false。

Yes, there is a precedence issue that you need to take into account.

Prolog attaches a numeric precedence value to each operator defined, so that its parse can automatically treat, e.g., 3+4*5 the same as if parentheses had been used to state 3+(4*5).

So your first example worked as expected, but not the second or third. There was simply no way to unify the terms, so Prolog returned false.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文