Planning over MAPF Agent Dependencies via Multi-Dependency PIBT

Abstract

Modern Multi-Agent Path Finding (MAPF) algorithms must plan for hundreds to thousands of agents in congested environments within a second, requiring highly efficient algorithms. Priority Inheritance with Backtracking (PIBT) is a popular algorithm capable of effectively planning in such situations. However, PIBT is constrained by its rule-based planning procedure and lacks generality because it restricts its search to paths that conflict with at most one other agent. This limitation also applies to Enhanced PIBT (EPIBT), a recent extension of PIBT. In this paper, we describe a new perspective on solving MAPF by planning over agent dependencies. Taking inspiration from PIBT’s priority inheritance logic, we define the concept of agent dependencies and propose Multi-Dependency PIBT (MD-PIBT) that searches over agent dependencies. MD-PIBT is a general framework where specific parameterizations can reproduce PIBT and EPIBT. At the same time, alternative configurations yield novel planning strategies that are not expressible by PIBT or EPIBT. Our experiments demonstrate that MD-PIBT effectively plans for as many as 10,000 homogeneous agents under various kinodynamic constraints, including pebble motion, rotation motion, and differential drive robots with speed and acceleration limits. We perform thorough evaluations on different variants of MAPF and find that MD-PIBT is particularly effective in MAPF with large agents.

Publication
In Proceedings of the IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS), Sep 27-Oct 1, 2026, Pittsburgh, Pennsylvania, USA

Introduction

We propose Multi-Dependency PIBT (MD-PIBT), published in IROS 2026. MD-PIBT generalizes PIBT [1] and EPIBT [2] by allowing each agent to bump into multiple agents while planning a multi-step windowed path, using the concept of an Agent Dependency Graph.

Agent Dependency Graph

MD-PIBT Agent Dependency Graph running example
Figure 1: Agent Dependency Graph.

MD-PIBT builds and searches over an Agent Dependency Graph. Left shows a scenario for planning with a window size of 3, with initial path preferences drawn. Assume all agents' safe paths are waiting at their current location.

(1) Let MD-PIBT start planning with A. A’s path conflicts with B, D, and E’s safe path, causing A to have hard dependencies on them. Thus, B, D, E need to be planned next. Given multiple agents, we plan in alphabetical order.

(2) When B plans, B’s path collides with C and A’s safe path. Since A is already planned, we record a soft dependency between B and A.

(3-6) This logic continues until planning F.

(7) F fails to find a collision-free path. When this occurs, F requires a parent (in this case C) to replan. The replan request unplans C which includes removing downstream dependencies and converting soft dependencies to C to hard dependencies.

(8) Suppose that C replans by moving down, which does not intersect with F’s safe path. Then F is not included in the AgDG. (9) After planning all agents in the AgDG, we can move on to plan other agents not in the AgDG (not depicted).

Demo

Our experiments show that MD-PIBT significantly outperforms EPIBT [2] when coordinating agents of heterogeneous sizes. The comparison below shows both methods on the same scenario.

EPIBT coordinating agents of heterogeneous sizes
EPIBT
MD-PIBT coordinating agents of heterogeneous sizes
MD-PIBT
Figure 2: EPIBT and MD-PIBT on a heterogeneous-agent scenario.

Cite

@inproceedings{Jiang2026md-pibt,
  author    = {Zixiang Jiang and Yulun Zhang and Rishi Veerapaneni and Jiaoyang Li},
  title     = {Planning over MAPF Agent Dependencies via Multi-Dependency PIBT},
  booktitle = {Proceedings of the IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS)},
  pages     = {},
  year      = {2026}
}

This software is released under the MIT License.

References

[1] Keisuke Okumura, Manao Machida, Yasumasa Tamura, and Xavier Défago. “Priority Inheritance with Backtracking for Iterative Multi-agent Path Finding.” Artificial Intelligence, 2022.

[2] Egor Yukhnevich and Anton Andreychuk. “Enhancing PIBT via Multi-Action Operations.” Proceedings of the AAAI Conference on Artificial Intelligence, 2025.