Skip to content

Commit

Permalink
remove whitespace, comments
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanzwicknagl committed Dec 6, 2023
1 parent 2528dd4 commit 326e564
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions examples/hamiltonian.lp
@@ -1,4 +1,3 @@

node(1..4). start(1).
edge(1,2). edge(2,3). edge(2,4). edge(3,1).
edge(3,4). edge(4,1). edge(4,3).
Expand All @@ -9,4 +8,3 @@ reached(V) :- reached(U), hc(U,V).
:- node(V), not reached(V).
:- hc(V,U), hc(V,W), U!=W.
:- hc(U,V), hc(W,V), U!=W.
% :- hc(V,U), hc(W,V), U!=W. % uncomment to make the program unsatisfiable & comment the line above

0 comments on commit 326e564

Please sign in to comment.