partial order planning
play

Partial-Order Planning 1 State-Space vs. Plan-Space State-space ( - PDF document

Partial-Order Planning 1 State-Space vs. Plan-Space State-space ( situation space ) planning algorithms search through the space of possible states of the world searching for a path that solves the problem. They can be based on


  1. Partial-Order Planning 1

  2. State-Space vs. Plan-Space • State-space ( situation space ) planning algorithms search through the space of possible states of the world searching for a path that solves the problem. • They can be based on progression : a forward search from the initial state looking for the goal state. • Or they can be based on regression : a backward search from the goals towards the initial state • STRIPS is an incomplete regression-based algorithm. • Plan-space planners search through the space of partial plans, which are sets of actions that may not be totally ordered. • Partial-order planners are plan-based and only introduce ordering constraints as necessary ( least committment ) in order to avoid unecessarily searching through the space of possible orderings. 2

  3. Partial Order Plans • Plan in which not all actions are ordered Partial Order Plan: Total Order Plans: Start Start Start Start Start Start Start Right Left Left Right Left Right Sock Sock Sock Sock Sock Sock Left Right Sock Sock Left Right Left Left Right Right Sock Shoe Shoe Sock Sock Sock LeftSockOn RightSockOn Left Right Left Right Right Left Left Right Sock Shoe Shoe Shoe Shoe Sock Shoe Shoe Right Left Right Left Right Left Shoe Shoe Shoe Shoe Shoe Shoe LeftShoeOn, RightShoeOn Finish Finish Finish Finish Finish Finish Finish 3

  4. Plans, Causal Links, and Threats • A plan is a three tuple <A, O, L> - A: A set of actions in the plan, {A 1 ,A 2 ,...A n } - O: A set of ordering constraints on actions {A i <A j , A k <A l ,...A m <A n }. These must be consistent , i.e. there must be at least one total ordering of actions in A that satisfy all the constraints. - B: A set of variable binding constraints {v=x,...} - L: a set of causal links showing how actions support each other • A causal link , A p → Q A c , indicates that action A p has an effect Q that achieves precondition Q for action A c . • A threat , is an action A t that can render a causal link A p → Q A c ineffective because: - O ∪ {A P < A t < A c } is consistent - A t has ¬ Q as an effect 4

  5. Threat Removal • Threats must be removed to prevent a plan from failing. • Demotion adds the constraint A t < A p to prevent clobbering, i.e. push the clobberer before the producer. • Promotion adds the constraint A c < A t to prevent clobbering, i.e. push the clobber after the consumer. S 3 c L S S 1 S 1 1 S 3 c c c c L S 2 S 2 S 2 S 3 c L (a) (b) (c) 5

  6. Initial (Null) Plan • Initial plan has - A={ A 0 , A ∞ } - O={A 0 < A ∞} - L ={} • A 0 (Start) has no preconditions but all facts in the initial state as effects. • A ∞ (Finish) has the goal conditions as preconditions and no effects. Op( Action: Go(there); Precond: At(here); Effects: At(there), ¬ At(here) ) Op( Action: Buy(x), Precond: At(store), Sells(store,x); Effects: Have(x) ) Start At(Home) Sells(SM,Banana) Sells(SM,Milk) Sells(HWS,Drill) Have(Drill) Have(Milk) Have(Banana) At(Home) Finish 6

  7. POP Algorithm • Stated as nondeterministic algorithm where choices must be made. Various search methods can be used (e.g. breadth-first, depth-first iterative deepening etc.) to explore the space of possible choices. • Maintains agenda of goals that need to be supported by links, where an agenda element is a pair <Q,A i > where Q is a precondition of A i that needs supporting. • Initialize plan to null plan and agenda to conjunction of goals (preconditions of Finish). • Done when all preconditions of every action in plan are supported by causal links which are not threatened. 7

  8. POP(<A,O,L>, agenda) 1) Termination: If agenda is empty, return <A,O,L>. Use topological sort to determine a totally ordered plan. 2) Goal Selection: Let <Q,A need > be a pair on the agenda 3) Action Selection: Let A add be a nondeterministically chosen action that adds Q. It can be an existing action in A or a new action. If there is no such action return failure. L´ = L ∪ {A add → Q A need } O´ = O ∪ {A add < A need } if A add is new then A´ = A ∪ {A add } and O´=O´ ∪ {A 0 < A add < A ∞ } else A´ = A 4) Update goal set: Let agenda´= agenda − {<Q,A need >} If A add is new then for each conjunct Q i of its precondition, add <Q i , A add > to agenda´ 5) Causal link protection: For every action A t that threatens a causal link A p → Q A c add an ordering constraint by choosing nondeterministically either (a) Demotion: Add A t < A p to O´ (b) Promotion: Add A c < A t to O´ If neither constraint is consistent then return failure. 6) Recurse: POP(<A´,O´,L´>, agenda´) 8

  9. Example Start At(s), Sells(s,Drill) At(s), Sells(s,Milk) At(s), Sells(s,Bananas) Buy(Drill) Buy(Milk) Buy(Bananas) Have(Drill), Have(Milk), Have(Bananas), At(Home) Finish Start At(HWS), Sells(HWS,Drill) At(SM), Sells(SM,Milk) At(SM), Sells(SM,Bananas) Buy(Drill) Buy(Milk) Buy(Bananas) Have(Drill), Have(Milk), Have(Bananas), At(Home) Finish • Add three actions to achieve basic goals. Use initial state to achieve the Sells preconditions. • Bold links are causal, regular are just ordering constraints 9

  10. Example (cont) Start At(x) At(x) Go(HWS) Go(SM) At(HWS), Sells(HWS,Drill) At(SM), Sells(SM,Milk) At(SM), Sells(SM,Bananas) Buy(Drill) Buy(Milk) Buy(Bananas) Have(Drill) , Have(Milk) , Have(Bananas) , At(Home) Finish Start At(Home) At(Home) Go(SM) Go(HWS) At(HWS), Sells(HWS,Drill) At(SM), Sells(SM,Milk) At(SM), Sells(SM,Bananas) Buy(Drill) Buy(Milk) Buy(Bananas) Have(Drill) , Have(Milk) , Have(Bananas) , At(Home) Finish 10

  11. Example (cont) Start At(Home) At(HWS) Go(HWS) Go(SM) At(HWS), Sells(HWS,Drill) At(SM), Sells(SM,Milk) At(SM), Sells(SM,Bananas) At(SM) Buy(Drill) Buy(Milk) Buy(Bananas) Go(Home) Have(Drill) , Have(Milk) , Have(Bananas) , At(Home) Finish • Cannot resolve threat to At(Home) preconditions of both Go(HWS) and Go(SM). • Must backtrack to supporting At(x) precondition of Go(SM) from intial state At(Home) and support it instead from the At(HWS) effect of Go(HWS). • Since Go(SM) still threatens At(HWS) of Buy(Drill) must promote Go(SM) to come after Buy(Drill). Demotion is not possible due to causal link supporting At(HWS) precondition of Go(SM) 11

  12. Example (cont) Start At(Home) Go(HWS) At(HWS) Sells(HWS,Drill) Buy(Drill) At(HWS) Go(SM) At(SM) Sells(SM,Milk) At(SM) Sells(SM,Ban.) Buy(Milk) Buy(Ban.) At(SM) Go(Home) Have(Milk) At(Home) Have(Ban.) Have(Drill) Finish • Add Go(Home) action to achieve At(Home), use At(SM) to achieve its precondition, and order it after Buy(Milk) and Buy(Banana) to resolve threats to At(SM). 12

  13. Planning Conclusions • Experiments confirm that in most cases partial-order planning is more efficient than total order. • Planning techniques have been applied to a number of realistic tasks: - Logistics planning for Desert Storm - Scheduling for the Hubble Space Telescope - Planning ground operations for the Space Shuttle - Semiconductor manufacturing - Cleaning oil spills • Many issues are involved in interleaving planning and execution - Conditional planning - Execution monitoring and dynamic replanning 13

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