1 / 74

CS 541: Artificial Intelligence

CS 541: Artificial Intelligence. Lecture III: Constraint Satisfaction and Adversarial Search. Re-cap Lecture II. Problem-solving agents Problem types Problem formulation Example problems Basic search algorithms Informed search Best first search A* search Heuristics Non-classical search

nelia
Download Presentation

CS 541: Artificial Intelligence

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. CS 541: Artificial Intelligence Lecture III: Constraint Satisfaction and Adversarial Search

  2. Re-cap Lecture II • Problem-solving agents • Problem types • Problem formulation • Example problems • Basic search algorithms • Informed search • Best first search • A* search • Heuristics • Non-classical search • Hill climbing • Simulated annealing • Genetic algorithms (briefly) • Local search in continuous spaces (very briefly)

  3. Constraint Satisfaction Lecture III: Part I

  4. Outline • Constraint satisfaction problem (CSP) examples • Backtracking search for CSPs • Problem structure and problem decomposition • Local search for CSPs

  5. Constraint satisfaction problems • Standard search problem: • State is a "black box"—any old data structure that supports goal test, eval, successor • CSP: • State is defined by variable Xi with values from domain Di • Goal test is a set of constraints specifying allowable combinations of values for subsets of variables • Allows useful general-purpose algorithms with more power than standard search algorithms

  6. Example: Map-Coloring • Variables: WA, NT, Q, NSW, V, SA, T • Domains: Di={red, gree, 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)}

  7. Example: Map-Coloring contd. • Solutions are assignments satisfying all constraints • E.g., {WA=red, NT=green, Q=red, NSW=green, V=red, SA=blue, T=green}

  8. Constraint graph • Binary CSP • each constraint relates at most two variables • 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 sub-problem!

  9. Varieties of CSPs • Discrete variables • Finite domains: size dO(dn) complete assignments • E.g., Boolean CSPs, include 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., StartJob1+5≤StartJob3 • Linear constraints solvable, nonlinear undecidable • Continuous variables • E.g., start/end times for Hubble Telescope observations • Linear constraints solvable in poly time by linear program (LP)

  10. Varieties of constraints • 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 • Preference (soft constraints), e.g., red is better than green • Often representable by a cost for each variable assignment constrained optimization problem

  11. Example: Cryptarithmetic • Variables: F T U W R O X1 X2 X3 • Domains: {0, 1, 2, 3, 4, 5, 6, 7, 8, 9} • Constraints • alldiff(F, T, U, W, R, O) • O+O=R+10X1,etc.

  12. Real-world CSPs • 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 of them involve real-value variables

  13. Standard search formulation (incremental) • Let's start with the straightforward, dumb approach, and 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 leagal assignments (not fixable!) • Goal test: the current assignment is complete • This is the same for all CSPs!  • Every solution appears at depth n with n variables • Path is irrelevant, so can also use complete-state formulation • b=(n-l)d at depth l, hence n!dn leaves!!!!

  14. Backtracking search • 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 dnleaves • Depth-first search for CSPs with single-varible assignments is called backtracking search • Backtracking search is the basic uninformed algorithm for CSPs • Can solve n-queens for n≈25

  15. Backtracking search

  16. Backtracking example

  17. Backtracking example

  18. Backtracking example

  19. Backtracking example

  20. Improving backtracking efficiency • General-purpose methods can give huge gains in speed • Which variable should be assigned next? • In what order should its values be tried? • Can we detect inevitable failure early? • Can we take advantage of problem structure?

  21. Minimum remaining values • Minimum remaining values (MRV) • Choose the variable with the fewest legal values

  22. Degree heuristic • Tie-breaker among MRV variables • Degree heuristic: • Choose the variable with the most constraints on remaining variables

  23. Least constraining value • 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

  24. Forward checking • Idea: Keep track of remaining legal values for unassigned variables • Terminate search when any variable has no legal values

  25. Forward checking • Idea: Keep track of remaining legal values for unassigned variables • Terminate search when any variable has no legal values

  26. Forward checking • Idea: Keep track of remaining legal values for unassigned variables • Terminate search when any variable has no legal values

  27. Forward checking • Idea: Keep track of remaining legal values for unassigned variables • Terminate search when any variable has no legal values

  28. Constraint propagation • 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

  29. Arc consistency • Simplest form of propagation makes each arc consistent • XY is consistent iff • For every value x of X there is some allowed y

  30. Arc consistency • Simplest form of propagation makes each arc consistent • XY is consistent iff • For every value x of X there is some allowed y

  31. Arc consistency • Simplest form of propagation makes each arc consistent • XY is consistent iff • For every value x of X there is some allowed y • If X loses a value, neighbors of X need to be rechecked

  32. Arc consistency • Simplest form of propagation makes each arc consistent • XY is consistent iff • For every value x of X there is some allowed y • 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 pre-processor or after each assignment

  33. Arc consistency algorithm • O(n2d3), can be reduced to O(n2d2) (but detecting all is NP-hard)

  34. Problem structure • Tasmania and mainland are independent sub-problems • Identifiable as connected components of constraint graph

  35. Problem structure • Suppose each subproblem has c variables out of n total • Worst-case solution ndc/c, linear in n • E.g., n=80, d=2, c=20 • 280=4 billion years at 10 million nodes/sec • 4∙220=0.4 seconds at 10 million nodes/sec

  36. Tree-structured CSPs • Theorem: if the constraint graph has no loops, the CSP can be solved in O(nd2) time • Compare to general CSPs, where worst-case time is O(dn)

  37. Algorithms for tree-structured CSPs • Choose a variable as root, order variables from root to leaves such that every node's parent precedes it in the ordering • For j from n down to 2, apply REMOVEINCONSISTENT(Parent(Xj), Xj) • For j from 1 to n, assign Xj consistently with parent(Xj)

  38. Nearly tree-structured CSPs • Conditioning: instantiate a variable, prune its neighbors' domains • Cutset conditioning: instantiate (in all ways) a set of variables such that the remaining constraint is a tree • Cutset size c  runtime O(dc∙(n-c)d2), very fast for small c

  39. Iterative algorithms for CSPs • Hill-climbing, simulated annealing typically work with "complete" states, i.e., all variables assigned • To apply to CSPs: • Allow states with unsatisfied constraints • Operators reassign variable values • Variable selection: randomly select any conflict variable • Value selection by min-conflict heuristic: • Choose value that violates the fewest constraints • I.e., hillclimb with h(n)=total number of violated constraints

  40. Example: 4-Queens • States: 4 queens in 4 columns (44=256 states) • Operators: move queen in column • Goal test: no attacks • Evaluation: h(n)=number of attacks

  41. Performance of min-conflict • Given random initial state, can solve n-queens in almost constant time for arbitrary n with high probability (e.g., n=10,000,000) • The same appears to be true for any randomly-generated CSP except in a narrow range of the ratio

  42. Summary • CSPs are a special kind of problem: • States defined by values of a fixed set of variables • Goal test defined by constraints on variable values • Backtracking=depth-first search with one variable assigned per node • Variable ordering and value selection heuristics help significantly • Forward checking prevents assignments that guarantee later failure • Constraint propagation (e.g., arc consistency) does additional work to constrain values and detect inconsistencies • The CSP representation allows analysis of problem structure • Tree-structured CSPs can be solved in linear time • Iterative min-conflicts is usually effective in practice

  43. Adversarial Search and Game Lecture III: Part II

  44. Outline • Games • Perfect play • Minimax decisions • α - βpruning • Resource limits and approximate evaluation • Games of chance • Games of imperfect information

  45. Games vs. search problems • "Unpredictable" opponent • Solution is a strategy specifying a move for every possible opponent reply • Time limits • Unlikely to find goal, must approximate • Plan of attack: • Computer considers possible lines of play (Babbage, 1846) • Algorithm for perfect play (Zermelo, 1912; Von Neumann, 1944) • Finite horizon, approximate evaluation (Zuse, 1945; Wienner, 1948; Shannon, 1950) • First chess program (Turing, 1951) • Machine learning to improve evaluation accuracy (Samuel, 1952-57) • Pruning to allow deeper search (McCarthy, 1956)

  46. Types of games

  47. Game tree (2-players, deterministic, turns)

  48. Minimax • Perfect play for deterministic, perfect-information games • Idea: choose move to position with highest minimax value=best achievable payoff against best play • E.g., 2-players game

  49. Minimax algorithm

  50. Properties of minimax search • Complete?? Yes, if tree is finite (chess has specfic rules for this) • Time?? O(bm) • Space?? O(bm) (depth first exploration • Optimal?? Yes, against an optimal opponent. Otherwise?? • For chess, b≈35, m ≈ 100 for "reasonable" games • Exact solution completely infeasible • But do we need to explore every path?

More Related