I have this assignment. I have some facts:
p(a,[b,d,e]).
p(b,[a,c,d]).
p(c,[b,d]).
p(e,[a]).
This is graph. There are 5 'points', and each point is connetceted with some another(like facts shows). I have to write a program, that calculates minimum number of color for this graph.
Could anyone help me with this?
Thank you so much!
By
Cordell
p(a,[b,d,e]).
p(b,[a,c,d]).
p(c,[b,d]).
p(e,[a]).
This is graph. There are 5 'points', and each point is connetceted with some another(like facts shows). I have to write a program, that calculates minimum number of color for this graph.
Could anyone help me with this?
Thank you so much!
By
Cordell