4 Reasoning with Constraints

The third edition of Artificial Intelligence: foundations of computational agents, Cambridge University Press, 2023 is now available (including full text).

4.5 Domain Splitting

Another method for simplifying the network is domain splitting or case analysis. The idea is to split a problem into a number of disjoint cases and solve each case separately. The set of all solutions to the initial problem is the union of the solutions to each case.

In the simplest case, suppose there is a binary variable X with domain {t,f}. All of the solutions either have X=t or X=f. One way to find all of the solutions is to set X=t, find all of the solutions with this assignment, and then assign X=f and find all solutions with this assignment. Assigning a value to a variable gives a smaller reduced problem to solve. If we only want to find one solution, we can look for the solutions with X=t, and if we do not find any, we can look for the solutions with X=f.

If the domain of a variable has more than two elements, for example if the domain of A is {1,2,3,4}, there are a number of ways to split it

  • Split the domain into a case for each value. For example, split A into the four cases A=1, A=2, A=3, and A=4.

  • Always split the domain into two disjoint non-empty subsets. For example, split A into the two cases: A{1,2} and the case A{3,4}.

The first approach makes more progress with one split, but the second may allow for more pruning with fewer steps. For example, if the same values for B can be pruned whether A is 1 or 2, the second case allows this fact to be discovered once and not have to be rediscovered for each element of A. This saving depends on how the domains are split.

Recursively solving the cases using domain splitting, recognizing when there is no solution based on the assignments, is equivalent to the search algorithm of Section 4.3. We can be more efficient by interleaving arc consistency with the search.

One effective way to solve a CSP is to use arc consistency to simplify the network before each step of domain splitting. That is, to solve a problem,

  • simplify the problem using arc consistency, and

  • if the problem is not solved, select a variable whose domain has more than one element, split it, and recursively solve each case.

One thing to notice about this algorithm is that it does not require arc consistency to start from scratch after domain splitting. If the variable X has its domain split, to_do can start with just the arcs that are possibly no longer arc consistent as a result of the split. These are the arcs of the form Y,r, where X appears in r and Y is not X.

1: procedure CSP_Solver(Vs,dom,Cs)
2:       Returns a solution to CSP Vs,dom,Cs or false if there is no solution
3:      return Solve2(Vs,dom,Cs,{X,ccCs and Xscope(c)})
4: procedure Solve2(Vs,dom,Cs,to_do)
5:      dom0:=GAC2(Vs,dom,Cs,to_do)
6:      if there is a variable X such that dom0[X]={} then
7:          return false
8:      else if for every variable X, |dom0[X]|=1 then
9:          return solution with each variable X having the value in dom0[X]
10:      else
11:          select variable X such that |dom0[X]|>1
12:          partition dom0[X] into D1 and D2
13:          dom1:=a copy of dom0 but with dom1[X]=D1
14:          dom2:=a copy of dom0 but with dom2[X]=D2
15:          to_do:={Z,c{X,Z}scope(c),ZX}
16:          return Solve2(Vs,dom1,Cs,to_do) or Solve2(Vs,dom2,Cs,to_do)      
Figure 4.5: Finding a model for a CSP using arc consistency and domain splitting

Figure 4.5 shows how to solve a CSP with arc consistency and domain splitting. CSP_Solver(CSP) returns a solution to constraint satisfaction problem CSP if there is (at least) one, or false otherwise. Note that the “or” in line 16 is assumed to return the value of its first argument it is not false, and otherwise returns the value of the second argument.

It is possible to use essentially the same algorithm to find all solutions: line 7 should return the empty set, line 9 should return the set containing one element, and line 16 should return the union of the answers from each case.

Example 4.21.

In Example 4.18, arc consistency simplified the network, but did not solve the problem. After arc consistency had completed, there were multiple elements in the domains. Suppose B is split. There are two cases

  • B=2. In this case A=2 is pruned. Splitting on C produces two of the answers.

  • B=3. In this case C=3 is pruned. Splitting on A produces the other two answers.

This search tree should be contrasted with the search tree of Figure 4.1. The search space with arc consistency is much smaller.

Domain splitting forms a search space from which any of the methods of Chapter 3 can be used. However, as it is only the solution and not the path that is of interest, and because the search space is finite, depth-first search is often used for these problems.

One other enhancement make domain splitting much more efficient when counting the number of solutions or finding all solutions. If assigning values to the variables disconnects the graph, each disconnected component can be solved separately. The solution to the complete problem is the cross product of the solutions to each component. This can save much computation when one is counting the number of solutions. For example, if one component has 100 solutions and the other component has 20 solutions, there are 2000 solutions. This is a more efficient way to count than finding each of the 2000 solutions separately.