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.3 Solving CSPs Using Search

Generate-and-test algorithms assign values to all variables before checking the constraints. Because individual constraints only involve a subset of the variables, some constraints can be tested before all of the variables have been assigned values. If a partial assignment is inconsistent with a constraint, any total assignment that extends the partial assignment will also be inconsistent.

Example 4.11.

In the delivery scheduling problem of Example 4.9, the assignments A=1 and B=1 are inconsistent with the constraint AB regardless of the values of the other variables. If the variables A and B are assigned values first, this inconsistency can be discovered before any values are assigned to C, D, or E, thus saving a large amount of work.

An alternative to generate-and-test algorithms is to construct a search space for the search strategies of the previous chapter to use. The graph to search is defined as follows:

  • The nodes are assignments of values to some subset of the variables.

  • The neighbors of a node n are obtained by selecting a variable Y that is not assigned in node n and by having a neighbor for each assignment of a value to Y that does not violate any constraint.

    Suppose node n is the assignment {X1=v1,,Xk=vk}. To find the neighbors of n, select a variable Y that is not in the set {X1,,Xk}. For each value yidom(Y), where X1=v1,,Xk=vk,Y=yi is consistent with each of the constraints, the node {X1=v1,,Xk=vk,Y=yi} is a neighbor of n.

  • The start node is the empty assignment that does not assign a value to any variables.

  • A goal node is a node that assigns a value to every variable. Note that this only exists if the assignment is consistent with all of the constraints.

In this case, it is not the path from the start node that is of interest, but the goal nodes.

Example 4.12.

Suppose you have a very simple CSP with the variables A, B, and C, each with domain {1,2,3,4}. Suppose the constraints are A<B and B<C. A possible search tree is shown in Figure 4.1.

Figure 4.1: Search tree for the CSP of Example 4.12

In this figure, a node corresponds to all of the assignments from the root to that node. The potential nodes that are pruned because they violate constraints are labeled with ✘.

The leftmost ✘ corresponds to the assignment A=1, B=1. This violates the A<B constraint, and so it is pruned.

This CSP has four solutions. The leftmost one is A=1, B=2, C=3. The size of the search tree, and thus the efficiency of the algorithm, depends on which variable is selected at each time. A static ordering, such as always splitting on A then B then C, is usually less efficient than the dynamic ordering used here, but it might be more difficult to find the best dynamic ordering than to find the best static ordering. The set of answers is the same regardless of the variable ordering.

There would be 43=64 total assignments tested in a generate-and-test algorithm. For the search method, there are 8 total assignments generated, and 16 other partial assignments that were tested for consistency.

Searching this tree with a depth-first search, typically called backtracking, can be much more efficient than generate and test. Generate and test is equivalent to not checking constraints until reaching the leaves. Checking constraints higher in the tree can prune large subtrees that do not have to be searched.