如何根据用户输入断言新规则 (PROLOG)

发布于 2024-12-18 13:14:52 字数 296 浏览 6 评论 0原文

我想接受用户的输入,即[garfield,hates,blacky]hates/2 当前不存在。

在我的数据库中,

process:-
    read(Input_List),
    add_rule(Input_List).

add_rule([X, Predicate, Y]):-
    assertz(Predicate(X, Y)).

但这不起作用。是否可以使用变量作为谓词和事实? 或者还有其他方法可以实现这一目标吗?

I want to accept users' input, i.e. [garfield, hates, blacky].
hates/2 doesn't exist currently.

In my database,

process:-
    read(Input_List),
    add_rule(Input_List).

add_rule([X, Predicate, Y]):-
    assertz(Predicate(X, Y)).

But this doesn't work. Is it possible to use a variable as predicate, and facts?
Or is there any other way to achieve this?

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

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

发布评论

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

评论(1

顾铮苏瑾 2024-12-25 13:14:52

您可以使用名为 univ 运算符

add_rule(X, Predicate, Y) :-
    Fact =.. [Predicate, X, Y],
    assertz(Fact).

用法:

?- add_rule(garfield, hates, blacky).
true.

?- hates(garfield, blacky).
true.

You can use the (=..)/2 operator called univ operator :

add_rule(X, Predicate, Y) :-
    Fact =.. [Predicate, X, Y],
    assertz(Fact).

Usage :

?- add_rule(garfield, hates, blacky).
true.

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