Patrick Lühne
b88393655a
With this change, the tableau rules for simplifying formula are applied iteratively until a fixpoint is reached.
8 lines
122 B
Plaintext
8 lines
122 B
Plaintext
{in(1..n, 1..r)}.
|
|
covered(I) :- in(I, S).
|
|
|
|
:- I = 1..n, not covered(I).
|
|
:- in(I, S), in(J, S), in(I + J, S).
|
|
|
|
#show in/2.
|