这是在Prolog中编码”谎言悖论”结构的正确方式吗?

huangapple go评论52阅读模式
英文:

Is this the correct way to encode the structure of the Liar Paradox in Prolog?

问题

这是在Prolog中编码谬误悖论的正确方式吗?

英文中的谬误悖论: "This sentence is not true."

?- LP = not(true(LP)).
LP = not(true(LP)).

?- unify_with_occurs_check(LP, not(true(LP))).
false.
英文:

Is this the correct way to encode the Liar Paradox in Prolog?

Liar Paradox in English: "This sentence is not true."

?- LP = not(true(LP)).
LP = not(true(LP)).

?- unify_with_occurs_check(LP, not(true(LP))).
false.

答案1

得分: -2

Prolog正确拒绝具有与说谎者悖论相同病态自我引用结构的任何表达式,使用其unify_with_occurs_check/2。

英文:

这是在Prolog中编码”谎言悖论”结构的正确方式吗?

Prolog correctly rejects any expression having the same pathological self referential structure as the Liar Paradox with its unify_with_occurs_check/2.

这是在Prolog中编码”谎言悖论”结构的正确方式吗?

huangapple
  • 本文由 发表于 2023年5月13日 23:20:45
  • 转载请务必保留本文链接:https://go.coder-hub.com/76243497.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定