57
1 Consistency algorithms Chapter 3

1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

  • View
    225

  • Download
    1

Embed Size (px)

Citation preview

Page 1: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

1

Consistency algorithms

Chapter 3

Page 2: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 2

Consistency methods

Approximation of inference:• Arc, path and i-consistecy

Methods that transform the original network into a tighter and tighter representations

Page 3: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 3

Arc-consistency

32,1,

32,1, 32,1,

1 X, Y, Z, T 3X YY = ZT ZX T

X Y

T Z

32,1,

=

Page 4: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 4

1 X, Y, Z, T 3X YY = ZT ZX T

X Y

T Z

=

1 3

2 3

Arc-consistency

Page 5: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 5

Arc-consistency

Page 6: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 7

Revise for arc-consistency

)( jijiii DRDD

Page 7: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 8

Figure 3.3: (a) Matching diagram describing a network of constraints that is not arc-consistent (b) An arc-consistent equivalent network.

Page 8: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 9

AC-1

)( 3enkO Complexity (Mackworth and Freuder, 1986): e = number of arcs, n variables,k values (ek^2, each loop, nk number of loops), best-case = ek, Arc-consistency is: )( 2ek

Page 9: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 10

AC-3

)( 3ekO Complexity: Best case O(ek), since each arc may be processed in O(2k)

Page 10: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 11

Example: A three variable network, with two constraints: z divides x and z divides y (a) before and (b) after AC-3 is applied.

Page 11: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 12

AC-4

)( 2ekO Complexity: (Counter is the number of supports to ai in xi from xj. S_(xi,ai) is the

set of pairs that (xi,ai) supports)

Page 12: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 13

Example applying AC-4

Page 13: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 14

Distributed arc-consistency(Constraint propagation) Implement AC-1 distributedly.

Node x_j sends the message to node x_i

Node x_i updates its domain:

Messages can be sent asynchronously or scheduled in a topological order

)( jijiji DRh

)( jijiii DRDD

jiii

jijiii

hDD

DRDD

)(

Page 14: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 15

Exercise: make the following network arc-consistent

Draw the network’s primal and dual constraint graph

Network = • Domains {1,2,3,4}

• Constraints: y < x, z < y, t < z, f<t, x<=t+1, Y<f+2

Page 15: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 16

Arc-consistency Algorithms

AC-1: brute-force, distributed AC-3, queue-based AC-4, context-based, optimal AC-5,6,7,…. Good in special cases

Important: applied at every node of search (n number of variables, e=#constraints, k=domain

size) Mackworth and Freuder (1977,1983), Mohr and Anderson,

(1985)…

)( 3ekO)( 3nekO

)( 2ekO

Page 16: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 17

Is arc-consistency enough?

Example: a triangle graph-coloring with 2 values.• Is it arc-consistent?

• Is it consistent?

It is not path, or 3-consistent.

Page 17: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 18

Path-consistency

Page 18: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 19

Path-consistency

Page 19: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 20

Revise-3

)( kjkikijijij RDRRR

Complexity: O(k^3) Best-case: O(t) Worst-case O(tk)

Page 20: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 21

PC-1

Complexity: O(n^3) triplets, each take O(k^3) steps O(n^3 k^3) Max number of loops: O(n^2 k^2) .

)( 55knO

Page 21: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 22

PC-2

)( 53knO Complexity: Optimal PC-4: (each pair deleted may add: 2n-1 triplets, number of pairs: O(n^2 k^2)

size of Q is O(n^3 k^2), processing is O(k^3))

)( 33knO

Page 22: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 23

Example: before and after path-consistency

PC-1 requires 2 processings of each arc while PC-2 may not Can we do path-consistency distributedly?

Page 23: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 25

Path-consistency Algorithms

Apply Revise-3 (O(k^3)) until no change

Path-consistency (3-consistency) adds binary constraints.

PC-1: PC-2: PC-4 optimal:

)( kjkikijijij RDRRR

)( 55knO)( 53knO)( 33knO

Page 24: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 26

I-consistency

Page 25: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 27

Higher levels of consistency, global-consistency

Page 26: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 28

Revise-i

)( ikO Complexity: for binary constraints For arbitrary constraints: ))2(( ikO

Page 27: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 29

4-queen example

Page 28: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 30

I-consistency

Page 29: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 32

Arc-consistency for non-binary constraints:Generalized arc-consistency

Complexity: O(t k), t bounds number of tuples.

Relational arc-consistency:

)( }{xSSxxx DRDD

)(}{}{ xSxSxS DRR

Page 30: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 33

Examples of generalized arc-consistency

x+y+z <= 15 and z >= 13 implies

x<=2, y<=2

Example of relational arc-consistency

BAGGBA ,,

Page 31: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 34

More arc-based consistency

Global constraints: e.g., all-different constraints• Special semantic constraints that appears

often in practice and a specialized constraint propagation. Used in constraint programming.

Bounds-consistency: pruning the boundaries of domains

Page 32: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 37

Example for alldiff A = {3,4,5,6} B = {3,4} C= {2,3,4,5} D= {2,3,4} E = {3,4} Alldiff (A,B,C,D,E} Arc-consistency does nothing Apply GAC to sol(A,B,C,D,E)? A = {6}, F = {1}…. Alg: bipartite matching kn^1.5 (Lopez-Ortiz, et. Al, IJCAI-03 pp 245 (A fast and simple

algorithm for bounds consistency of alldifferent constraint)

Page 33: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 38

Global constraints

Alldifferent Sum constraint (variable equal the sum

of others) Global cardinality constraint (a value can

be assigned a bounded number of times to a set of variables)

The cummulative constraint (related to scheduling tasks)

Page 34: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 39

Bounds consistency

Page 35: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 40

Bounds consistency for Alldifferent constraints

Page 36: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 41

Boolean constraint propagation

(A V ~B) and (B)• B is arc-consistent relative to A but not vice-versa

Arc-consistency by resolution:res((A V ~B),B) = A

Given also (B V C), path-consistency:Res((A V ~B),(B V C) = (A V C)

What will generalized arc-consistency can do to cnfs?Relational arc-consistency rule = unit-resolution

Page 37: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 42

Boolean constraint propagation

If Alex goes, then Becky goes: If Chris goes, then Alex goes: Query:

Is it possible that Chris goes to the party but Becky does not?

Example: party problem

) (or, BA BA ) (or, ACA C

e?satisfiabl Is

C B, A,C B,Atheorynalpropositio

Page 38: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 43

Gausian and Boolean propagation

Linear inequalities

Boolean constraint propagation

BAGGBA ,,

2,2

13,15

yx

zzyx

Page 39: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 44

Constraint propagation for Boolean constraints: Unit propagation

Page 40: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 47

Consistency for numeric constraints

3,10,

7

3

],10,10[

5,10

]9,5[],5,1[

10

],15,5[],10,1[

zyyxaddingbyobtained

zxyconsistencpath

zy

z

yyxaddingby

yxyconsistencarc

yx

yx

Page 41: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 48

Tractable classes

Page 42: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 49

Changes in the network graph as a result of arc-consistency, path-consistency and 4-consistency.

Page 43: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 50

Distributed arc-consistency(Constraint propagation) Implement AC-1

distributedly.

Node x_j sends the message to node x_i

Node x_i updates its domain:

Generalized arc-consistency can be implemented distributedly: sending messages between constraints over the dual graph:

)( jijiji DRh

)( jijiii DRDD

jiii hDD

)(}{}{ xSxSxS DRR

Page 44: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 51

Distributed Arc-Consistency• Arc-consistency can be formulated as a

distributed algorithm:A

B C

D F

G

a Constraint network

Page 45: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 52

A123

A C1 23 2

A B1 21 32 1

2 3

3 13 2

B C F1 2 33 2 1A B D

1 2 31 3 22 1 32 3 13 1 23 2 1

D F G1 2 32 1 3

1R

2R

4R

3R

5R

6R

Relational Arc-consistency

A

B C

D F

G

The message that R2 sends to R1 is

R1 updates its relation and domains and sends messages to neighbors

Page 46: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 53

A123

A C1 23 2

A B1 21 32 12 33 13 2

B C F1 2 33 2 1

A B D1 2 31 3 22 1 32 3 13 1 23 2 1 D F G

1 2 32 1 3

1R

2R

4R

3R

5R

6R

A

AB AC

ABD BCF

DFG

B

4 5

3

6

2

B

D F

A

A

A

C

1

DRAC on the dual join-graph

Page 47: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 54

Distributed Relational Arc-Consistency

DRAC can be applied to the dual problem of any constraint network:

Page 48: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 56

Node 6 sends messagesNode 5 sends messagesNode 4 sends messagesNode 3 sends messagesNode 2 sends messagesA123

A C1 23 2

A B1 21 32 12 33 13 2

B C F1 2 33 2 1

A B D1 2 31 3 22 1 32 3 13 1 23 2 1 D F G

1 2 32 1 3

1R

2R

4R

3R

5R

6R

21

3

A

21h

21

3

A

31h

21

3

A

32h

21

3

A

12h

23h

13

A

12321323

32B

11A

24h

25h

13

B

21

3

A

41h

45h

13

B

46h

12

D

12321323

32B

11A

42h

65h

13

F

64h

21

3

D

53h

2C

52h

21

3

B

35h

2C

54h

21

3

B

56h

13

F

Iteration 1 13h

13

A

14h

21

3

A

Node 1 sends messages

A

AB AC

ABD BCF

DFG

AB

4 5

3

6

2

B

D

B

F

A

A

A

A

C

A

43h

13

A

21

3

A

34h1

Page 49: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 58

A13

A C1 23 2

A B1 32 12 33 1

B C F1 2 33 2 1

A B D1 3 22 3 13 1 23 2 1

D F G2 1 3

1R

2R

4R

3R

5R

6R

A

AB AC

ABD BCF

DFG

B

4 5

3

6

2

B

D F

A

A

A

C

1

Iteration 1

Page 50: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 59

A13

A C1 23 2

A B1 32 12 33 1

B C F1 2 33 2 1

A B D1 3 22 3 13 1 23 2 1

D F G2 1 3

A13

A13

A123

A13

A13

D2

F13

D12

C2

B13

C2

F1

A123

B13

B123

A

AB AC

ABD BCF

DFG

B

4 5

3

6

2

B

D F

A

A

A

C

1

21h

31h

13h

12h

14h

35h

24h

25h

41h

46h

42h

65h

64h

52h

53h

56h

1R

2R

4R

3R

5R

6R

Iteration 2

13

B

Page 51: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 60

A13

A C1 23 2

A B1 33 1

B C F3 2 1

A B D1 3 23 1 2

D F G2 1 3

Iteration 21R

2R

4R

3R

5R

6R

A

AB AC

ABD BCF

DFG

B

4 5

3

6

2

B

D F

A

A

A

C

1

Page 52: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 61

A13

A13

A13

B3

A13

D2

F1

D2

C2

B13

C2

F1

A13

A13

A13

A C1 23 2

A B1 33 1

B C F3 2 1

A B D1 3 23 1 2

D F G2 1 3

B13

B13

21h

31h

13h

12h

14h

35h

24h

25h

41h

46h

42h

65h

64h

52h

53h

56h

1R

2R

4R

3R

5R

6R

A

AB AC

ABD BCF

DFG

B

4 5

3

6

2

B

D F

A

A

A

C

1

Iteration 3

Page 53: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 62

A13

A C1 23 2

A B1 3

B C F3 2 1

A B D1 3 23 1 2

D F G2 1 3

1R

2R

4R

3R

5R

6R

A

AB AC

ABD BCF

DFG

B

4 5

3

6

2

B

D F

A

A

A

C

1

Iteration 3

Page 54: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 63

A13

A13

A1

B3

A13

D2

F1

D2

C2

B3

C2

F1

A13

A13

A13

A C1 23 2

A B1 3

B C F3 2 1

A B D1 3 23 1 2

D F G2 1 3

B13

B13

21h

31h

13h

12h

14h

35h

24h

25h

41h

46h

42h

65h

64h

52h

53h

56h

1R

2R

4R

3R

5R

6R

A

AB AC

ABD BCF

DFG

B

4 5

3

6

2

B

D F

A

A

A

C

1

Iteration 4

Page 55: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 64

A1

A C1 23 2

A B1 3

B C F3 2 1

A B D1 3 2

D F G2 1 3

1R

2R

4R

3R

5R

6R

A

AB AC

ABD BCF

DFG

B

4 5

3

6

2

B

D F

A

A

A

C

1

Iteration 4

Page 56: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 65

A1

A1

A1

B3

B3

B3

A1

D2

F1

D2

C2

B3

C2

F1

A1

A1

A1

A C1 23 2

A B1 3

B C F3 2 1

A B D1 3 2

D F G2 1 3

21h

31h

13h

12h

14h

35h

24h

25h

41h

46h

42h

65h

64h

52h

53h

56h

1R

2R

4R

3R

5R

6R

A

AB AC

ABD BCF

DFG

B

4 5

3

6

2

B

D F

A

A

A

C

1

Iteration 5

Page 57: 1 Consistency algorithms Chapter 3. Spring 2007 ICS 275A - Constraint Networks 2 Consistency methods Approximation of inference: Arc, path and i-consistecy

Spring 2007 ICS 275A - Constraint Networks 66

A1

A C1 2

A B1 3

B C F3 2 1

A B D1 3 2

D F G2 1 3

1R

2R

4R

3R

5R

6R

A

AB AC

ABD BCF

DFG

B

4 5

3

6

2

B

D F

A

A

A

C

1

Iteration 5