constraint satisfaction
play

Constraint Satisfaction Philipp Koehn 3 March 2020 Philipp Koehn - PowerPoint PPT Presentation

Constraint Satisfaction Philipp Koehn 3 March 2020 Philipp Koehn Artificial Intelligence: Constraint Satisfaction 3 March 2020 Outline 1 Constraint satisfaction problems (CSP) examples Backtracking search for CSPs Problem


  1. Constraint Satisfaction Philipp Koehn 3 March 2020 Philipp Koehn Artificial Intelligence: Constraint Satisfaction 3 March 2020

  2. Outline 1 ● Constraint satisfaction problems (CSP) examples ● Backtracking search for CSPs ● Problem structure and problem decomposition ● Local search for CSPs Philipp Koehn Artificial Intelligence: Constraint Satisfaction 3 March 2020

  3. 2 examples Philipp Koehn Artificial Intelligence: Constraint Satisfaction 3 March 2020

  4. Example: Map-Coloring 3 ● 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 ) ,... } Philipp Koehn Artificial Intelligence: Constraint Satisfaction 3 March 2020

  5. Example: Map-Coloring 4 ● Solutions are assignments satisfying all constraints, e.g., { WA = red,NT = green,Q = red,NSW = green,V = red,SA = blue,T = green } Philipp Koehn Artificial Intelligence: Constraint Satisfaction 3 March 2020

  6. Constraint Satisfaction Problems (CSPs) 5 ● Previously: generic search – state is a “black box” – state must support goal test, eval, successor ● CSP – state is defined by variables X i with values from domain D i – goal test is a set of constraints specifying allowable combinations of values for subsets of variables ● Simple example of a formal representation language ● We will look at useful general-purpose algorithms with more power than standard search algorithms Philipp Koehn Artificial Intelligence: Constraint Satisfaction 3 March 2020

  7. Varieties of CSPs 6 ● Discrete variables ⇒ O ( d n ) complete assignments – finite domains; size d � ∗ e.g., Boolean CSPs, incl. Boolean satisfiability (NP-complete) – infinite domains (integers, strings, etc.) ∗ e.g., job scheduling, variables are start/end days for each job ∗ need a constraint language, e.g., StartJob 1 + 5 ≤ StartJob 3 ∗ linear constraints solvable, nonlinear undecidable ● Continuous variables – e.g., start/end times for Hubble Telescope observations – linear constraints solvable in poly time by LP methods Philipp Koehn Artificial Intelligence: Constraint Satisfaction 3 March 2020

  8. Varieties of Constraints 7 ● Unary constraints involve a single variable, e.g., SA ≠ green ● Binary constraints involve pairs of variables, e.g., SA ≠ WA ● Higher-order constraints involve 3 or more variables, e.g., cryptarithmetic column constraints ● Preferences (soft constraints), e.g., red is better than green often representable by a cost for each variable assignment → constrained optimization problems Philipp Koehn Artificial Intelligence: Constraint Satisfaction 3 March 2020

  9. Map Coloring Constraint Graph 8 ● Binary CSP: each constraint relates at most 2 variables (i.e., colors of 2 states) ● Constraint graph: nodes are variables, arcs show constraints ● General-purpose CSP algorithms use the graph structure to speed up search. E.g., Tasmania is an independent subproblem! Philipp Koehn Artificial Intelligence: Constraint Satisfaction 3 March 2020

  10. Example: Cryptarithmetic 9 ● Variables: F T U W R O X 1 X 2 X 3 ● Domains: { 0 , 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 } ● Constraints alldiff ( F,T,U,W,R,O ) O + O = R + 10 ⋅ X 1 , etc. Philipp Koehn Artificial Intelligence: Constraint Satisfaction 3 March 2020

  11. Example: Sudoku 10 ● No same number in row, column, small square ● Easily formulated as CSP with alldiff constraints ● Can be quickly solved with standard CSP solvers Philipp Koehn Artificial Intelligence: Constraint Satisfaction 3 March 2020

  12. Real-World CSPs 11 ● Assignment problems e.g., who teaches what class ● Timetabling problems e.g., which class is offered when and where? ● Hardware configuration ● Spreadsheets ● Transportation scheduling ● Factory scheduling ● Floorplanning ● Notice that many real-world problems involve real-valued variables Philipp Koehn Artificial Intelligence: Constraint Satisfaction 3 March 2020

  13. 12 backtracking search Philipp Koehn Artificial Intelligence: Constraint Satisfaction 3 March 2020

  14. Standard Search Formulation (Incremental) 13 ● Let’s start with the straightforward, dumb approach, then fix it ● States are defined by the values assigned so far – Initial state: the empty assignment, ∅ – Successor function: assign a value to an unassigned variable that does not conflict with current assignment. � ⇒ fail if no legal assignments (not fixable!) – Goal test: the current assignment is complete ● Note – This is the same for all CSPs! � – Every solution appears at depth n with n variables � ⇒ use depth-first search – b =( n − ℓ ) d at depth ℓ , hence n ! d n leaves � Philipp Koehn Artificial Intelligence: Constraint Satisfaction 3 March 2020

  15. Backtracking Search 14 ● Variable assignments are commutative, i.e., [ WA = red then NT = green ] same as [ NT = green then WA = red ] ● Only need to consider assignments to a single variable at each node ⇒ b = d and there are d n leaves � ● Depth-first search for CSPs with single-variable assignments is called backtracking search ● Backtracking search is the basic uninformed algorithm for CSPs ● Can solve n -queens for n ≈ 25 Philipp Koehn Artificial Intelligence: Constraint Satisfaction 3 March 2020

  16. Backtracking Search 15 function B ACKTRACKING -S EARCH ( csp ) returns solution/failure return R ECURSIVE -B ACKTRACKING ( {} , csp ) function R ECURSIVE -B ACKTRACKING ( assignment , csp ) returns soln/failure if assignment is complete then return assignment var ← S ELECT -U NASSIGNED -V ARIABLE ( V ARIABLES [ csp ], assignment , csp ) for each value in O RDER -D OMAIN -V ALUES ( var , assignment , csp ) do if value is consistent with assignment given C ONSTRAINTS [ csp ] then add { var = value } to assignment result ← R ECURSIVE -B ACKTRACKING ( assignment , csp ) if result ≠ failure then return result remove { var = value } from assignment return failure Philipp Koehn Artificial Intelligence: Constraint Satisfaction 3 March 2020

  17. Backtracking Example 16 Philipp Koehn Artificial Intelligence: Constraint Satisfaction 3 March 2020

  18. Backtracking Example 17 Recall: assign variables in fixed order Philipp Koehn Artificial Intelligence: Constraint Satisfaction 3 March 2020

  19. Backtracking Example 18 Only two valid choices (red violates constraint) Philipp Koehn Artificial Intelligence: Constraint Satisfaction 3 March 2020

  20. Backtracking Example 19 And so it continues... full assignmen: done no valid successor: fail → backtrack Philipp Koehn Artificial Intelligence: Constraint Satisfaction 3 March 2020

  21. Improving Backtracking Efficiency 20 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? Philipp Koehn Artificial Intelligence: Constraint Satisfaction 3 March 2020

  22. Minimum Remaining Values 21 ● Minimum remaining values (MRV): choose the variable with the fewest legal values 3 choices 2 choices 1 choice ... Philipp Koehn Artificial Intelligence: Constraint Satisfaction 3 March 2020

  23. Degree Heuristic 22 ● Tie-breaker among MRV variables ● Degree heuristic: choose the variable with the most constraints on remaining variables Philipp Koehn Artificial Intelligence: Constraint Satisfaction 3 March 2020

  24. Least Constraining Value 23 ● Given a variable, choose the least constraining value: the one that rules out the fewest values in the remaining variables ● Combining these heuristics makes 1000 queens feasible Philipp Koehn Artificial Intelligence: Constraint Satisfaction 3 March 2020

  25. 24 constraint propagation Philipp Koehn Artificial Intelligence: Constraint Satisfaction 3 March 2020

  26. Forward Checking 25 ● Idea: Keep track of remaining legal values for unassigned variables Terminate search when any variable has no legal values Philipp Koehn Artificial Intelligence: Constraint Satisfaction 3 March 2020

  27. Forward Checking 26 ● Idea: Keep track of remaining legal values for unassigned variables Terminate search when any variable has no legal values Philipp Koehn Artificial Intelligence: Constraint Satisfaction 3 March 2020

  28. Forward Checking 27 ● Idea: Keep track of remaining legal values for unassigned variables Terminate search when any variable has no legal values Philipp Koehn Artificial Intelligence: Constraint Satisfaction 3 March 2020

  29. Forward Checking 28 ● Idea: Keep track of remaining legal values for unassigned variables Terminate search when any variable has no legal values Philipp Koehn Artificial Intelligence: Constraint Satisfaction 3 March 2020

  30. Constraint Propagation 29 ● Forward checking propagates information from assigned to unassigned variables, but doesn’t provide early detection for all failures: ● NT and SA cannot both be blue! ● Constraint propagation repeatedly enforces constraints locally Philipp Koehn Artificial Intelligence: Constraint Satisfaction 3 March 2020

  31. Arc Consistency 30 ● Simplest form of propagation makes each arc consistent ● X → Y is consistent iff for every value x of X there is some allowed y Philipp Koehn Artificial Intelligence: Constraint Satisfaction 3 March 2020

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