私はこのコードを持っています:
% 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
このエラーの目的は何ですか?
つまり、ファイルは正常にコンパイルおよび実行され、エラーの意味を認識しています。しかし、なぜ?
これは、ベスト プラクティスを実施するための単なる通知ですか?
私は論理プログラミングに非常に慣れていません。
ありがとう!