anthem/examples/schur-numbers.lp
Patrick Lühne d3e160222a
Remove obsolete code in examples
These lines of code were commented out and can be safely removed.
2018-04-22 22:12:02 +02:00

8 lines
122 B
Plaintext

#show in/2.
{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).