example map coloring
play

Example: Map-Coloring Northern Constraint Satisfaction Problems - PDF document

Example: Map-Coloring Northern Constraint Satisfaction Problems Territory Western Queensland Australia South Australia New South Wales Chapter 5 Victoria Tasmania Variables WA , NT , Q , NSW , V , SA , T Domains D i = { red, green, blue


  1. Example: Map-Coloring Northern Constraint Satisfaction Problems Territory Western Queensland Australia South Australia New South Wales Chapter 5 Victoria Tasmania Variables WA , NT , Q , NSW , V , SA , T Domains D i = { red, green, blue } Constraints: adjacent regions must have different colors e.g., WA � = NT (if the language allows this), or ( WA, NT ) ∈ { ( red, green ) , ( red, blue ) , ( green, red ) , ( green, blue ) , . . . } Chapter 5 1 Chapter 5 4 Outline Example: Map-Coloring contd. ♦ CSP examples ♦ Backtracking search for CSPs Northern ♦ Problem structure and problem decomposition Territory Western Queensland ♦ Local search for CSPs Australia South Australia New South Wales Victoria Tasmania Solutions are assignments satisfying all constraints, e.g., { WA = red, NT = green, Q = red, NSW = green, V = red, SA = blue, T = green } Chapter 5 2 Chapter 5 5 Constraint satisfaction problems (CSPs) Constraint graph Binary CSP: each constraint relates at most two variables Standard search problem: state is a “black box”—any old data structure Constraint graph: nodes are variables, arcs show constraints that supports goal test, eval, successor CSP: NT Q state is defined by variables X i with values from domain D i WA goal test is a set of constraints specifying SA NSW allowable combinations of values for subsets of variables Simple example of a formal representation language V Victoria Allows useful general-purpose algorithms with more power than standard search algorithms T General-purpose CSP algorithms use the graph structure to speed up search. E.g., Tasmania is an independent subproblem! Chapter 5 3 Chapter 5 6

  2. Varieties of CSPs Real-world CSPs Discrete variables Assignment problems finite domains; size d ⇒ O ( d n ) complete assignments e.g., who teaches what class ♦ e.g., Boolean CSPs, incl. Boolean satisfiability (NP-complete) Timetabling problems infinite domains (integers, strings, etc.) e.g., which class is offered when and where? ♦ e.g., job scheduling, variables are start/end days for each job ♦ need a constraint language, e.g., StartJob 1 + 5 ≤ StartJob 3 Hardware configuration ♦ linear constraints solvable, nonlinear undecidable Spreadsheets Continuous variables Transportation scheduling ♦ e.g., start/end times for Hubble Telescope observations ♦ linear constraints solvable in poly time by LP methods Factory scheduling Floorplanning Notice that many real-world problems involve real-valued variables Chapter 5 7 Chapter 5 10 Varieties of constraints Standard search formulation (incremental) Unary constraints involve a single variable, Let’s start with the straightforward, dumb approach, then fix it e.g., SA � = green States are defined by the values assigned so far Binary constraints involve pairs of variables, ♦ Initial state: the empty assignment, { } e.g., SA � = WA ♦ Successor function: assign a value to an unassigned variable Higher-order constraints involve 3 or more variables, that does not conflict with current assignment. e.g., cryptarithmetic column constraints ⇒ fail if no legal assignments (not fixable!) Preferences (soft constraints), e.g., red is better than green ♦ Goal test: the current assignment is complete often representable by a cost for each variable assignment → constrained optimization problems 1) This is the same for all CSPs! 2) Every solution appears at depth n with n variables ⇒ use depth-first search 3) Path is irrelevant, so can also use complete-state formulation 4) b = ( n − ℓ ) d at depth ℓ , hence n ! d n leaves!!!! Chapter 5 8 Chapter 5 11 Example: Cryptarithmetic Backtracking search Variable assignments are commutative, i.e., [ WA = red then NT = green ] same as [ NT = green then WA = red ] T W O O F T U W R Only need to consider assignments to a single variable at each node + T W O b = d and there are d n leaves ⇒ F O U R Depth-first search for CSPs with single-variable assignments X 3 X 2 X 1 is called backtracking search Backtracking search is the basic uninformed algorithm for CSPs Variables: F T U W R O X 1 X 2 X 3 Domains: { 0 , 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 } Can solve n -queens for n ≈ 25 Constraints alldiff ( F, T, U, W, R, O ) O + O = R + 10 · X 1 , etc. Chapter 5 9 Chapter 5 12

  3. Backtracking search Backtracking example function Backtracking-Search ( csp ) returns solution/failure return Recursive-Backtracking ( { } , csp ) function Recursive-Backtracking ( assignment , csp ) returns soln/failure if assignment is complete then return assignment var ← Select-Unassigned-Variable ( Variables [ csp ], assignment , csp ) for each value in Order-Domain-Values ( var , assignment , csp ) do if value is consistent with assignment given Constraints [ csp ] then add { var = value } to assignment result ← Recursive-Backtracking ( assignment , csp ) if result � = failure then return result remove { var = value } from assignment return failure Chapter 5 13 Chapter 5 16 Backtracking example Backtracking example Chapter 5 14 Chapter 5 17 Backtracking example Improving backtracking efficiency General-purpose methods can give huge gains in speed: 1. Which variable should be assigned next? 2. In what order should its values be tried? 3. Can we detect inevitable failure early? 4. Can we take advantage of problem structure? Chapter 5 15 Chapter 5 18

  4. Minimum remaining values Forward checking Idea: Keep track of remaining legal values for unassigned variables Minimum remaining values (MRV): choose the variable with the fewest legal values Terminate search when any variable has no legal values WA NT Q NSW V SA T Chapter 5 19 Chapter 5 22 Degree heuristic Forward checking Tie-breaker among MRV variables Idea: Keep track of remaining legal values for unassigned variables Terminate search when any variable has no legal values Degree heuristic: choose the variable with the most constraints on remaining variables WA NT Q NSW V SA T Chapter 5 20 Chapter 5 23 Least constraining value Forward checking Given a variable, choose the least constraining value: Idea: Keep track of remaining legal values for unassigned variables the one that rules out the fewest values in the remaining variables Terminate search when any variable has no legal values Allows 1 value for SA Allows 0 values for SA WA NT Q NSW V SA T Combining these heuristics makes 1000 queens feasible Chapter 5 21 Chapter 5 24

  5. Forward checking Arc consistency Idea: Keep track of remaining legal values for unassigned variables Simplest form of propagation makes each arc consistent Terminate search when any variable has no legal values X → Y is consistent iff for every value x of X there is some allowed y WA NT Q NSW V SA T WA NT Q NSW V SA T Chapter 5 25 Chapter 5 28 Constraint propagation Arc consistency Forward checking propagates information from assigned to unassigned vari- Simplest form of propagation makes each arc consistent ables, but doesn’t provide early detection for all failures: X → Y is consistent iff for every value x of X there is some allowed y WA NT Q NSW V SA T WA NT Q NSW V SA T NT and SA cannot both be blue! If X loses a value, neighbors of X need to be rechecked Constraint propagation repeatedly enforces constraints locally Chapter 5 26 Chapter 5 29 Arc consistency Arc consistency Simplest form of propagation makes each arc consistent Simplest form of propagation makes each arc consistent X → Y is consistent iff X → Y is consistent iff for every value x of X there is some allowed y for every value x of X there is some allowed y WA NT Q NSW V SA T WA NT Q NSW V SA T If X loses a value, neighbors of X need to be rechecked Arc consistency detects failure earlier than forward checking Can be run as a preprocessor or after each assignment Chapter 5 27 Chapter 5 30

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend