Arity = 0的Prolog函数
我试图在Prolog中写下以下内容:
“如果代理人拥有箭头,则Hasarrow/0返回true,并且在拍摄行动后开始返回错误。”
代理商从拥有箭头开始。
我的代码如下:
assert(hasArrow).
hasArrow :- (A = shoot -> false ; assert(hasArrow)).
这是正确的吗?
I am trying to write the following in prolog:
"hasarrow/0 returns true if the Agent has the arrow, and begins to return false after shoot action has been executed by the Agent."
The agent starts with having the arrow.
My code is as follows:
assert(hasArrow).
hasArrow :- (A = shoot -> false ; assert(hasArrow)).
Is this correct?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以按如下方式解决问题:
示例:
You can solve the problem as follows:
Examples: