Remove obsolete code in examples

These lines of code were commented out and can be safely removed.
This commit is contained in:
Patrick Lühne 2018-04-22 22:12:02 +02:00
parent 8110195d62
commit d3e160222a
Signed by: patrick
GPG Key ID: 05F3611E97A70ABF
3 changed files with 0 additions and 4 deletions

View File

@ -1,5 +1,4 @@
#show p/2.
%#external integer(n(0)).
{p(1..n, 1..n)}.

View File

@ -1,5 +1,4 @@
#show prime/1.
%#external integer(n(0)).
composite(I * J) :- I = 2..n, J = 2..n.
prime(N) :- N = 2..n, not composite(N).

View File

@ -1,6 +1,4 @@
#show in/2.
%#external integer(n(0)).
%#external integer(r(0)).
{in(1..n, 1..r)}.
covered(I) :- in(I, S).