logic-and-learning-lab / Popper

An inductive logic programming system
MIT License
206 stars 36 forks source link

Some of the predicate invention examples don't work in latest version #68

Closed yangdinglou closed 1 year ago

yangdinglou commented 1 year ago

Here is the output of the classic kinship example. I have checked that no PI is performed during the search.

Precision:1.00 Recall:1.00 TP:19 FN:0 TN:0 FP:0 Size:13
ancestor(A,B):- father(A,B).
ancestor(A,B):- mother(A,B).
ancestor(A,B):- father(C,B),mother(A,C).
ancestor(A,B):- father(A,C),ancestor(C,B).
ancestor(A,B):- father(C,B),ancestor(A,C).

If this is not easy to fix, could you tell me which commit is the most recent one whose PI works?