我有这样的代码:
% Family tree
female(pen).
male(tom).
male(bob).
female(liz).
female(pat).
female(ann).
male(jim).
parent(pam, bob).
parent(tom, bob).
parent(tom, liz).
parent(bob, ann).
parent(bob, pat).
parent(pat, jim).
我得到这个错误:
Warning: Clauses of female/1 are not together in source-file
Warning: Clauses of male/1 are not together in source-file
这是什么错误的目的是什么?
我的意思是,文件没有编译和运行得很好,我知道错误的意思。 但为什么?
这只是强制执行最佳实践的通知?
我是很新的逻辑编程。
谢谢!