solving concurrent multiagent planning using classical
play

Solving Concurrent Multiagent Planning using Classical Planning - PowerPoint PPT Presentation

Introduction Background Compilation Experiments Conclusions Solving Concurrent Multiagent Planning using Classical Planning Daniel Furelos-Blanco and Anders Jonsson Universitat Pompeu Fabra June 26, 2018 Daniel Furelos-Blanco and Anders


  1. Introduction Background Compilation Experiments Conclusions Solving Concurrent Multiagent Planning using Classical Planning Daniel Furelos-Blanco and Anders Jonsson Universitat Pompeu Fabra June 26, 2018 Daniel Furelos-Blanco and Anders Jonsson Universitat Pompeu Fabra Solving Concurrent Multiagent Planning using Classical Planning

  2. Introduction Background Compilation Experiments Conclusions Motivation Lot of progress in multiagent planning since CoDMAP-15. Limitation: benchmark domains can be solved using sequential plans. Many applications require agents to act in parallel, like RoboCup Soccer or RoboCup Rescue. Daniel Furelos-Blanco and Anders Jonsson Universitat Pompeu Fabra Solving Concurrent Multiagent Planning using Classical Planning

  3. Introduction Background Compilation Experiments Conclusions Proposed approach Solve multiagent planning problems that involve concurrency by translating them into classical planning. Concurrency expressed using concurrency constraints which model when 1 two actions must occur in parallel, or 2 two actions cannot occur in parallel. Daniel Furelos-Blanco and Anders Jonsson Universitat Pompeu Fabra Solving Concurrent Multiagent Planning using Classical Planning

  4. Introduction Background Compilation Experiments Conclusions Concurrent Multiagent Planning - Definition A classical planning problem is defined as Π = � F, A, I, G � where F is a set of fluents, A is a set of atomic actions, I ⊆ F is an initial state, and G ⊆ F is a goal condition. A concurrent multiagent planning problem (CMAP) is a tuple � A i � n � � Π = N, F, i =1 , I, G where N = { 1 , . . . , n } is the agent set, and A i is the action set of agent i ∈ N . Daniel Furelos-Blanco and Anders Jonsson Universitat Pompeu Fabra Solving Concurrent Multiagent Planning using Classical Planning

  5. Introduction Background Compilation Experiments Conclusions Concurrent Multiagent Planning - Joint Actions Each action is a joint/concurrent action : a combination of atomic actions simultaneously performed. a 1 , . . . , a k � � Given a concurrent action a = , its precondition and effects are defined as k k � � pre ( a j ) , eff ( s, a ) = eff ( s, a j ) pre ( a ) = j =1 j =1 Constraints are imposed on atomic actions to ensure joint actions are well-defined. Daniel Furelos-Blanco and Anders Jonsson Universitat Pompeu Fabra Solving Concurrent Multiagent Planning using Classical Planning

  6. Introduction Background Compilation Experiments Conclusions Concurrent Multiagent Planning - Concurrency Constraints Formulation in [Boutilier and Brafman, 2001] (later extended in [Kovacs, 2012]) uses actions as fluents : Positive: action a 1 has a 2 as precondition. Negative: action a 1 has ¬ a 2 as precondition. Effects of an action a 1 can be conditioned to the simultaneous execution of another action a 2 . Implicit negative concurrency constraint: Each agent contributes at most once to the joint action. Daniel Furelos-Blanco and Anders Jonsson Universitat Pompeu Fabra Solving Concurrent Multiagent Planning using Classical Planning

  7. Introduction Background Compilation Experiments Conclusions Concurrent Multiagent Planning - Example TableMover [Boutilier and Brafman, 2001]: Two agents must move blocks between rooms. Put blocks on a table, carry the table together to another room, and tip the table to make the blocks fall down. r 1 r 2 a 2 s 1 s 2 Table b 1 a 1 Daniel Furelos-Blanco and Anders Jonsson Universitat Pompeu Fabra Solving Concurrent Multiagent Planning using Classical Planning

  8. Introduction Background Compilation Experiments Conclusions Concurrent Multiagent Planning - Example ... (:action lift-side (forall :agent ?a - agent (?b - block ?r - room ?s2 - :parameters (?s - side) side) :precondition (and (when (at-side ?a ?s) (and (inroom Table ?r) (down ?s) (on-table ?b) (handempty ?a) (down ?s2) (forall (forall (?a2 - agent) (?a2 - agent ?s2 - side) (not (lift-side ?a2 ?s2)) (not(lower-side ?a2 ?s2)) ) ) ) ) (and (on-floor ?b) :effect (and (not (down ?s)) (inroom ?b ?r) (up ?s) (not (on-table ?b)) (lifting ?a ?s) ) (not (handempty ?a ?s)) ) ... ))) Daniel Furelos-Blanco and Anders Jonsson Universitat Pompeu Fabra Solving Concurrent Multiagent Planning using Classical Planning

  9. Introduction Background Compilation Experiments Conclusions Compilation from Multiagent to Classical Planning (I) A i � n � � � Transform a CMAP Π = N, F, i =1 , I, G into a classical planning problem Π ′ = � F ′ , A ′ , I ′ , G ′ � . Sound and complete transformation: Adds new fluents and actions that allow to select and apply joint actions while respecting concurrency constraints. Divide simulation of a joint action in three different phases: 1 Action selection: check preconditions of constituent atomic actions. 2 Action application: apply effects of constituent atomic actions. 3 Resetting: reset auxiliary fluents. Daniel Furelos-Blanco and Anders Jonsson Universitat Pompeu Fabra Solving Concurrent Multiagent Planning using Classical Planning

  10. Introduction Background Compilation Experiments Conclusions Compilation from Multiagent to Classical Planning (II) Joint action select - phase repeat t, 1 ≤ t ≤ n select - a i apply - phase repeat t do - a i reset - phase repeat t end - a i finish Start new joint action The resulting number of actions is polynomial , not exponential: � = 3 � � + 4 . � � A ′ � � � A i � i ∈ N Daniel Furelos-Blanco and Anders Jonsson Universitat Pompeu Fabra Solving Concurrent Multiagent Planning using Classical Planning

  11. Introduction Background Compilation Experiments Conclusions Compilation from Multiagent to Classical Planning (III) Extension: joint actions with bounded size C . At most C agents can act at a time. Purpose: reduce branching factor. The number of actions is still polynomial: � = (2 C + 1) � � A i � � + 4 . � � A ′ � � i ∈ N Daniel Furelos-Blanco and Anders Jonsson Universitat Pompeu Fabra Solving Concurrent Multiagent Planning using Classical Planning

  12. Introduction Background Compilation Experiments Conclusions Compilation from Multiagent to Classical Planning (IV) Example r 1 r 2 a 2 s 1 Table s 2 b 1 a 1 Classical plan (1st joint action) Multiagent plan 1 (to-table a1 r1 s2)(pickup-floor a2 b1 r1) 1 (select-phase ) 2 (select-to-table a1 r1 s2) 2 (putdown-table a2 b1 r1) 3 (to-table a2 r1 s1) 3 (select-pickup-floor a2 b1 r1) 4 (apply-phase ) 4 (lift-side a1 s2)(lift-side a2 s1) 5 (move-table a1 r1 r2 s2)(move-table a2 r1 r2 s1) 5 (do-pickup-floor a2 b1 r1) 6 (do-to-table a1 r1 s2) 6 (lower-side a1 s2) 7 (reset-phase ) 8 (end-to-table a1 r1 s2) 9 (end-pickup-floor a2 b1 r1) 10 (finish ) Daniel Furelos-Blanco and Anders Jonsson Universitat Pompeu Fabra Solving Concurrent Multiagent Planning using Classical Planning

  13. Introduction Background Compilation Experiments Conclusions Experiments Tests on two sets of domains : 1 CoDMAP-15 domains (do not require concurrency). 2 Domains that require concurrency: TableMover [Boutilier and Brafman, 2001]. Maze [Crosby et al., 2014]. BoxPushing [Brafman and Zoran, 2014]. Workshop . Test three variants of the compilation + Fast-Downward: Unbounded ( ∞ ). Joint action size ≤ 2 ( C = 2 ). Joint action size ≤ 4 ( C = 4 ). Daniel Furelos-Blanco and Anders Jonsson Universitat Pompeu Fabra Solving Concurrent Multiagent Planning using Classical Planning

  14. Introduction Background Compilation Experiments Conclusions Experiments - CoDMAP-15 domains (I) Used to show that our algorithm is complete. However, they do not require concurrency (can be sequentially solved). Use Fast-Downward (FD) for comparison. They do not specify negative concurrency constraints (incompatible actions). Add explicit negative concurrency constraints to avoid invalid plans → Complexity to find a plan increases! Daniel Furelos-Blanco and Anders Jonsson Universitat Pompeu Fabra Solving Concurrent Multiagent Planning using Classical Planning

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