Minor formatting in graph coloring example

This commit is contained in:
Patrick Lühne 2018-04-11 21:34:33 +02:00
parent 40ddee8444
commit cc3c9b642c
Signed by: patrick
GPG Key ID: 05F3611E97A70ABF
1 changed files with 3 additions and 2 deletions

View File

@ -3,7 +3,8 @@
#external vertex(1).
#show color/2.
{color(V,C)} :- vertex(V), color(C).
{color(V, C)} :- vertex(V), color(C).
covered(V) :- color(V, _).
:- vertex(V), not covered(V).
:- color(V1,C), color(V2,C), edge(V1,V2).
:- color(V1, C), color(V2, C), edge(V1, V2).
:- color(V, C1), color(V, C2), C1 != C2.