In: Computer Science
Section C. Arc Consistency
Consider the following constraint network.
10. If the variables A, B and C each have the domain {1,2,3,4} before arc consistency is run, indicate what their domains will be after arc consistency has finished:
A = { }
B = { }
C = { }
11. If we have just considered the edge <B, A < B> and reduce the domain of B as a result, do we need to add any arcs back to the To-Do Arcs list? If not, why not? If so, which edges?
assuming the constraint network as (as it is not provided):
The other two edges are arc consistent, so the algorithm terminates with
dom(A) = {1, 2},
dom(B) = {2, 3},
dom(C) = {3, 4}.