planning and optimization
play

Planning and Optimization D7. M&S: Generic Algorithm and - PowerPoint PPT Presentation

Planning and Optimization D7. M&S: Generic Algorithm and Heuristic Properties Gabriele R oger and Thomas Keller Universit at Basel November 7, 2018 Generic Algorithm Heuristic Properties Summary Content of this Course Tasks


  1. Planning and Optimization D7. M&S: Generic Algorithm and Heuristic Properties Gabriele R¨ oger and Thomas Keller Universit¨ at Basel November 7, 2018

  2. Generic Algorithm Heuristic Properties Summary Content of this Course Tasks Progression/ Regression Classical Complexity Heuristics Planning MDPs Uninformed Search Probabilistic Heuristic Search Monte-Carlo Methods

  3. Generic Algorithm Heuristic Properties Summary Content of this Course: Heuristics Abstractions Delete Relaxation in General Pattern Abstraction Databases Merge & Heuristics Landmarks Shrink Potential Heuristics Cost Partitioning

  4. Generic Algorithm Heuristic Properties Summary Generic Algorithm

  5. Generic Algorithm Heuristic Properties Summary Content of this Course: Merge & Shrink Synchronized Product Merge & Shrink Algorithm Merge & Shrink Heuristic Properties Strategies Label Reduction

  6. Generic Algorithm Heuristic Properties Summary Generic Merge-and-shrink Abstractions: Outline Using the results from the previous chapter, we can develop the ideas of a generic abstraction computation procedure that takes all state variables into account: Initialization step: Compute all abstract transition systems for atomic projections to form the initial abstraction collection. Merge steps: Combine two abstract systems in the collection by replacing them with their synchronized product. (Stop once only one transition system is left.) Shrink steps: If the abstractions in the collection are too large to compute their synchronized product, make them smaller by abstracting them further (applying an arbitrary abstraction to them). We explain these steps with our running example.

  7. Generic Algorithm Heuristic Properties Summary Back to the Running Example ALR ARL LLR RRL ALL ARR LRR LLL RRR RLL BLL BRR LRL RLR BRL BLR Logistics problem with one package, two trucks, two locations: state variable package: { L , R , A , B } state variable truck A: { L , R } state variable truck B: { L , R }

  8. Generic Algorithm Heuristic Properties Summary Initialization Step: Atomic Projection for Package T π { package } : M ⋆⋆⋆ M ⋆⋆⋆ A M ⋆⋆⋆ DAR PAL DAL PAR L R PBL DBR DBL PBR B M ⋆⋆⋆

  9. Generic Algorithm Heuristic Properties Summary Initialization Step: Atomic Projection for Truck A T π { truck A } : PAL,DAL,MB ⋆⋆ , PAR,DAR,MB ⋆⋆ , PB ⋆ ,DB ⋆ PB ⋆ ,DB ⋆ MALR L R MARL

  10. Generic Algorithm Heuristic Properties Summary Initialization Step: Atomic Projection for Truck B T π { truck B } : PBL,DBL,MA ⋆⋆ , PBR,DBR,MA ⋆⋆ , PA ⋆ ,DA ⋆ PA ⋆ ,DA ⋆ MBLR L R MBRL current collection: {T π { package } , T π { truck A } , T π { truck B } }

  11. Generic Algorithm Heuristic Properties Summary First Merge Step T 1 := T π { package } ⊗ T π { truck A } : MB ⋆⋆ MB ⋆⋆ MALR AL AR PAL DAR MARL L P A A D R MB ⋆⋆ MB ⋆⋆ MB ⋆⋆ MB ⋆⋆ MALR MALR P R B B L D LL LR RL RR DBL R MARL MARL B P R P B B D L DBL PBR MALR BL BR MARL MB ⋆⋆ MB ⋆⋆ current collection: {T 1 , T π { truck B } }

  12. Generic Algorithm Heuristic Properties Summary Need to Simplify? If we have sufficient memory available, we can now compute T 1 ⊗ T π { truck B } , which would recover the complete transition system of the task. However, to illustrate the general idea, let us assume that we do not have sufficient memory for this product. More specifically, we will assume that after each product operation we need to reduce the result transition system to four states to obey memory constraints. So we need to reduce T 1 to four states. We have a lot of leeway in deciding how exactly to abstract T 1 . In this example, we simply use an abstraction that leads to a good result in the end.

  13. Generic Algorithm Heuristic Properties Summary First Shrink Step T 2 := some abstraction of T 1 MB ⋆⋆ MB ⋆⋆ MALR AL AR PAL DAR MARL L P A A D R MB ⋆⋆ MB ⋆⋆ MB ⋆⋆ MB ⋆⋆ MALR MALR P R B B L D LL LR RL RR DBL R MARL MARL B P R P B B D L DBL PBR MALR BL BR MARL MB ⋆⋆ MB ⋆⋆

  14. Generic Algorithm Heuristic Properties Summary First Shrink Step T 2 := some abstraction of T 1 MB ⋆⋆ MB ⋆⋆ MALR AL AR PAL DAR MARL L P A A D R MB ⋆⋆ MB ⋆⋆ MB ⋆⋆ MB ⋆⋆ MALR MALR P R B B L D LL LR RL RR DBL R MARL MARL B P R P B B D L DBL PBR MALR BL BR MARL MB ⋆⋆ MB ⋆⋆

  15. Generic Algorithm Heuristic Properties Summary First Shrink Step T 2 := some abstraction of T 1 MB ⋆⋆ MB ⋆⋆ MALR AL AR PAL D MARL A L P A R A D R MB ⋆⋆ MB ⋆⋆ MALR DBR M ⋆⋆⋆ P B L LL LR R R DBL MARL B P R P B B R D L B DBL P MALR BL BR MARL MB ⋆⋆ MB ⋆⋆

  16. Generic Algorithm Heuristic Properties Summary First Shrink Step T 2 := some abstraction of T 1 MB ⋆⋆ MB ⋆⋆ MALR AL AL AR AR PAL D MARL A L P A R A D R MB ⋆⋆ MB ⋆⋆ MALR DBR M ⋆⋆⋆ P B L LL LR R R DBL MARL B P R P B B R D L B DBL P MALR BL BR MARL MB ⋆⋆ MB ⋆⋆

  17. Generic Algorithm Heuristic Properties Summary First Shrink Step T 2 := some abstraction of T 1 M ⋆⋆⋆ A PAL DAR DAL P A R MB ⋆⋆ MB ⋆⋆ MALR DBR M ⋆⋆⋆ P B L LL LR R R DBL MARL B P R P B B R D L B DBL P MALR BL BR MARL MB ⋆⋆ MB ⋆⋆

  18. Generic Algorithm Heuristic Properties Summary First Shrink Step T 2 := some abstraction of T 1 M ⋆⋆⋆ A PAL DAR DAL P A R MB ⋆⋆ MB ⋆⋆ MALR DBR M ⋆⋆⋆ P B L LL LR R R DBL MARL B P R P B B R D L B DBL P MALR BL BL BR BR MARL MB ⋆⋆ MB ⋆⋆

  19. Generic Algorithm Heuristic Properties Summary First Shrink Step T 2 := some abstraction of T 1 M ⋆⋆⋆ A PAL DAR DAL P A R MB ⋆⋆ MB ⋆⋆ MALR M ⋆⋆⋆ PBL LL LR R MARL DBL R PBL B D PBR DBL B M ⋆⋆⋆

  20. Generic Algorithm Heuristic Properties Summary First Shrink Step T 2 := some abstraction of T 1 M ⋆⋆⋆ A PAL DAR DAL P A R MB ⋆⋆ MB ⋆⋆ MALR M ⋆⋆⋆ PBL LL LR R MARL DBL R PBL B D PBR DBL B M ⋆⋆⋆

  21. Generic Algorithm Heuristic Properties Summary First Shrink Step T 2 := some abstraction of T 1 MB ⋆⋆ M ⋆⋆⋆ MB ⋆⋆ D ⋆ R MALR PBL M ⋆⋆⋆ LL LR I R MARL DBL P ⋆ R P ⋆ L D ⋆ L

  22. Generic Algorithm Heuristic Properties Summary First Shrink Step T 2 := some abstraction of T 1 MB ⋆⋆ M ⋆⋆⋆ MB ⋆⋆ D ⋆ R MALR PBL M ⋆⋆⋆ LL LR I R MARL DBL P ⋆ R P ⋆ L D ⋆ L current collection: {T 2 , T π { truck B } }

  23. Generic Algorithm Heuristic Properties Summary Second Merge Step T 3 := T 2 ⊗ T π { truck B } : LRL P B M L DBL B L M R B R MA ⋆⋆ L LRR DAR MALR MARL R L PAR L R IL RL M M A A B B L L M M P ⋆ L M M R R B B R R L L L ⋆ D IR RR D ⋆ R MA ⋆⋆ P ⋆ R LLL PAL MA ⋆⋆ MA ⋆⋆ M B L DAL M R B R L LLR current collection: {T 3 }

  24. Generic Algorithm Heuristic Properties Summary Another Shrink Step? Normally we could stop now and use the distances in the final abstract transition system as our heuristic function. However, if there were further state variables to integrate, we would simplify further, e.g. leading to the following abstraction (again with four states): M ⋆⋆⋆ M ⋆⋆⋆ M ⋆⋆⋆ M ⋆ RL P ⋆ L D ⋆ R LLL LRR I R LRL LLR M ⋆ LR D ⋆ L P ⋆ R We get a heuristic value of 3 for the initial state, better than any PDB heuristic that is a proper abstraction. The example generalizes to more locations and trucks, even if we stick to the size limit of 4 (after merging).

  25. Generic Algorithm Heuristic Properties Summary Generic Algorithm Template Generic Merge & Shrink Algorithm abs := {T π { v } | v ∈ V } while abs contains more than one abstract transition system: select A 1 , A 2 from abs shrink A 1 and/or A 2 until size ( A 1 ) · size ( A 2 ) ≤ N abs := abs \ {A 1 , A 2 } ∪ {A 1 ⊗ A 2 } return the remaining abstract transition system in abs N : parameter bounding number of abstract states Questions for practical implementation: Which abstractions to select? � merging strategy How to shrink an abstraction? � shrinking strategy How to choose N ? � usually: as high as memory allows

  26. Generic Algorithm Heuristic Properties Summary Heuristic Properties

  27. Generic Algorithm Heuristic Properties Summary Content of this Course: Merge & Shrink Synchronized Product Merge & Shrink Algorithm Merge & Shrink Heuristic Properties Strategies Label Reduction

  28. Generic Algorithm Heuristic Properties Summary Heuristic Properties Each iteration of the algorithm corresponds to a transformation of the collection abs of transition systems. The exact transformation depends on the specific instantiation of the generic algorithm (e.g. of the merging and the shrinking strategy). For analyzing the properties of the resulting heuristic, we analyze properties of the individual transformations.

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