Pith. sign in

REVIEW 2 major objections 4 minor 83 references

Search-Aided Joint Agent-Environment Reinforcement Learning for Robust Lifelong Multi-Agent Path Finding with Rotations

T0 review · 2 major / 4 minor · reviewed 2026-08-08 · deepseek-v4-flash

Pith's one-line read This paper argues that jointly training an agent policy and a learned edge-cost guidance policy, shielded by the search algorithm Causal PIBT, yields the best reported throughput on a lifelong multi-agent path-finding model with…

desk verdict A solid new model and a credible same-model win over Causal-PIBT, but the 'outperforms all SoTA' claim rests on a model-mismatch comparison that should be reframed. read the letter →

arxiv 2608.05588 v1 pith:7A4NJCGI submitted 2026-08-06 cs.RO cs.AIcs.MA

classification cs.ROcs.AIcs.MA
keywords lifelongmulti-agentpathfindingreinforcementlearningrobustsafetyconstraintsin-placerotationCausalPIBTguidancegraphoptimizationwarehouseautomationcollisionshielding
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

This paper claims that learning-based lifelong multi-agent path finding has been stuck on an over-simple kinematic model, and that adding two constraints taken from real warehouse robots—a safety rule forbidding one agent from following directly behind another, and in-place rotation that costs additional timesteps—makes coordination harder but the problem worth solving. To handle the extra difficulty, it introduces Search-Aided Joint Reinforcement Learning (SJRL), which trains two policies in one RL loop: an agent policy that proposes each free robot's next vertex, and an environment policy that learns traffic costs on the map's edges and converts them, via backward Dijkstra search, into global guidance heuristics. A synchronized variant of the search algorithm Causal PIBT shields the agents' decisions, resolving collisions and propagating intentions through chains of robots. Experiments claim SJRL significantly outperforms the strong search-only planner Causal-PIBT and consistently outperforms current state-of-the-art learned planners across six maps, and that it holds up in a mixed-reality warehouse with 8 physical and 248 virtual robots. A sympathetic reader would care because the paper locates the bottleneck not in bigger networks but in whether the planning model and the learning signal reflect how robots actually move.

What carries the argument

The load-bearing mechanism is a two-level joint training loop. At decision times, each free agent's convolutional policy proposes a next-vertex subgoal from an 11×11 local view; a synchronized variant of Causal PIBT resolves the proposals by depth-first priority inheritance, effectively propagating one agent's intention along a chain of robots and treating busy agents' current and subgoal vertices as obstacles. In parallel, the environment policy, a CNN over the obstacle map and precomputed vertex/edge visitation statistics, samples per-edge Gaussian costs, and backward Dijkstra over the state space of vertex–orientation pairs converts those costs into minimum-cost distance heuristics that are fed into the agent policy via skip connections. Both policies are updated with PPO-based rules inside shared simulations, with Causal PIBT treated as part of the environment so policy gradients need no correction for the search's action modifications. Together these pieces convert the near-impossible random exploration of coordinated motion in corridors into guided, intention-coupled decisions.

What would settle it

Two checks would settle the claims. Reproduce the six-map evaluation at 256 agents with 32 seeds: if Causal-PIBT's mean throughput matches SJRL's within one standard deviation on the dense Warehouse and Sortation maps, the headline improvement claim fails. And execute SJRL's plans on physical differential-drive robots at operating speed: if the robots cannot stop within the one-vertex spacing the model allows, the LMAPF-R2 safety model, and with it the claimed practical relevance, fails.

Watch

Extended reading notes

Core claim

The central claim is that a lifelong MAPF planner becomes simultaneously more realistic and more effective when the standard discrete model is replaced by LMAPF-R2, which prohibits following collisions (a 1-robust safety constraint) and requires orientation-dependent in-place rotation, and when two policies are trained jointly rather than separately. In SJRL, the agent policy predicts the next vertex as a subgoal instead of a primitive action, which imposes a policy hierarchy that makes coordinated exploration tractable; synchronized Causal PIBT then resolves the proposed subgoals through priority inheritance, where the robust constraint is enforced during greedy action execution toward the assigned subgoal. The environment policy, a CNN fed by the obstacle map and precomputed traffic statistics, outputs Gaussian edge costs bounded to [1,10]; backward Dijkstra over vertex–orientation states turns those costs into heuristic distances that condition the agent policy through skip connections. The two policies reinforce each other, the agent policy learning local reactive coordination while the environment policy balances global traffic, and the paper's ablations attribute the gains to the joint optimization, the subgoal hierarchy, and the search shield rather than to any single component.

Load-bearing premise

The practical value of the whole approach rests on the assumption that the LMAPF-R2 abstraction, a one-vertex following distance and discrete in-place rotation on a 4-neighbor grid, faithfully describes how real warehouse robots move and how close they may safely follow one another.

Editorial extensions

If this is right

  • At runtime only the agent policy must execute, since the environment policy's edge costs and Dijkstra heuristics are precomputed once per map, keeping inference under 0.05 seconds per timestep.
  • The throughput gap over Causal-PIBT widens as agents are added on dense maps, so the advantage concentrates exactly in the high-density regime warehouses operate in.
  • Ablations show joint training beats agent-only and environment-only training, and the wait heatmaps show the two policies divide labor: one relieves local congestion, the other balances global traffic.
  • Replacing the subgoal hierarchy and intention propagation with naive action- or vertex-based shielding causes large performance drops, particularly on maps with long corridors, pinning the feasibility of RL in this model on the search shield.
  • Under the standard MAPF model the leading learned planners have converged to nearly equal throughput, whereas SJRL holds a consistent margin under LMAPF-R2, which the paper reads as evidence that the modeling choice itself is a major lever.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • A natural stress test the paper does not run: scale the safety margin from one vertex to a k-vertex following gap; because the robust constraint enters only through obstacle bookkeeping in Causal PIBT and the greedy action rule, the same joint-training loop should extend with modest changes to k-robust settings.
  • The paper reports that SJRL trained from scratch still trails SJRL initialized with expert one-way aisle costs, which suggests the joint objective has local optima that PPO does not escape; a curriculum that imitates one-way traffic before fine-tuning would be a direct, testable remedy.
  • The same agent-environment joint learning pattern, a global cost field re-planned cheaply with local reactions learned, applies beyond warehousing to any large multi-agent coordination setting such as building evacuation, drone corridor management, or map-scale traffic control.
  • Because the guidance graph is recomputed only once per map, refreshing it periodically as traffic patterns drift during a long shift is a cheap adaptation that would likely compound SJRL's gains; the authors explicitly leave this online-update extension open.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

2 major / 4 minor

Summary. The paper introduces LMAPF-R2, a lifelong multi-agent path finding model that augments the standard model with robust safety constraints (prohibition of following collisions) and in-place rotation constraints, motivated by warehouse robot kinematics. The authors propose Search-Aided Joint Reinforcement Learning (SJRL), which couples a subgoal-predicting agent policy with a modified Causal PIBT collision shield and an environment policy that learns edge costs providing global guidance via backward Dijkstra search. The agent and environment policies are trained jointly with PPO/MAPPO-style updates. Experiments on six maps with 32-320 agents, ablations (SARL, SERL, CMA-ES), and a mixed-reality 8-robot demonstration show that SJRL improves over the search-only baseline Causal PIBT and over the single-policy ablations. The paper also compares SJRL against SILLM, MAGAT+, and HMAGAT and claims SJRL 'consistently outperforms all of them', while acknowledging those baselines use the standard LMAPF model.

Significance. If the central claims hold, the paper makes a useful contribution: it demonstrates that learning-based LMAPF can be extended to a more realistic kinematic model with scalable results, and it provides a joint co-optimization framework for agent and environment policies. The empirical methodology is solid in several respects: 32 random seeds, large agent-count sweeps, a meaningful ablation structure, and a physical-robot validation. The core same-model comparison against Causal-PIBT appears credible and is well supported. However, two load-bearing issues need to be resolved: the state-of-the-art comparison in Section 5.2 is confounded by a model mismatch, and the claim in Section 4.2 that treating Causal PIBT as part of the environment introduces no policy-gradient bias is not theoretically justified.

major comments (2)
  1. [Section 4.2, last paragraph] The claim that 'SJRL consistently outperforms all of them' (referring to SILLM, MAGAT+, and HMAGAT) is not supported as a fair algorithmic comparison. As the paper itself states, 'SARL and SJRL adopt the LMAPF-R2 model, whereas the other methods use the standard LMAPF model.' The baselines are trained and evaluated under the standard model with ADG-based execution scheduling, while SJRL is trained and evaluated directly under LMAPF-R2. This is a comparison of different problem models rather than different solvers for the same problem. The results can at most demonstrate the value of modeling robust and rotational constraints during planning; they cannot support the stronger claim that SJRL is a better LMAPF algorithm. The authors should either remove the SoTA-comparison claim or explicitly reframe it as a model-abstraction study, with the baselines adapted to LMAPF-R2 or with the comparison confined to same-model methods.
  2. [Section 4.2, last paragraph] The statement that 'treating Causal PIBT as part of the environment... does not bias the policy gradient' is not justified and is likely incorrect as stated. During training, the agent policy samples a subgoal bv_i, and Causal PIBT may change that subgoal (via priority inheritance and intention propagation) to a different final subgoal sg_i. The final subgoal is the action that actually determines the agent's subsequent behavior and reward. Standard PPO updates use the log-probability of the sampled action bv_i; but the return depends on sg_i, which is a deterministic function of the joint sampled subgoals of all free agents. The policy-gradient theorem therefore does not directly apply. To obtain an unbiased gradient, the authors must either (a) use the probability of the final subgoal under the induced distribution (e.g., by summing over preimages of the shield mapping), (b) use the joint-action log-probability (sum of individual log-probs) so that the deterministic shield becomes part of the reward function of the joint action, or (c) provide a proof that the shield mapping is injective or that the bias vanishes. Without such a correction, PPO may be optimizing a biased objective, which undermines the theoretical soundness of the training procedure. The paper currently provides no such proof.
minor comments (4)
  1. [Throughout] The name 'Causal-PIBT' is written inconsistently as 'Causal-PIBT' and 'Causal PIBT' in different places; please standardize.
  2. [Section 5.1] The paper repeatedly uses the word 'significantly' (e.g., 'SJRL significantly outperforms') without reporting statistical significance tests. With 32 seeds, the authors should provide confidence intervals or a formal test (e.g., paired bootstrap) to support the word 'significant'.
  3. [Figure 6 caption] The MPD formula is given as sum_i,j p_i p_j dist_ij, but it is not clear whether this is normalized by the total probability mass. If p_i are empirical occupation probabilities that sum to 1, the expression is fine; otherwise, please clarify the normalization.
  4. [Appendix C.3] The physical-robot validation uses only 8 physical robots and 248 virtual robots; this is a positive step, but the throughput numbers appear lower than the simulation results (e.g., SJRL 1.01 vs. >2 in Figure 5). The paper should briefly explain the discrepancy (e.g., execution disturbances, P3GASUS overhead) to avoid confusion.

Circularity Check

0 steps flagged · score 0.0 of 10

No circularity found: the same-model Causal-PIBT comparison is a controlled ablation, and the learned policies optimize throughput via RL rather than being fitted to it.

full rationale

The paper's central claim—that SJRL significantly improves over Causal-PIBT—is tested against NORL, a no-RL baseline running the same Causal-PIBT variant under the same LMAPF-R2 model with handcrafted heuristics; SJRL adds RL-trained agent and environment policies. The environment policy is trained by MAPPO/PPO to maximize the summed agent reward, which is a potential-based shaping of throughput (per-action -1 plus progress dist(sprev,g)-dist(scurr,g)); it is not fitted to reproduce the reported throughput numbers, and evaluation uses held-out goal/start samples and agent counts on the same maps. Self-citations to SILLM, CS-PIBT, and GGO identify components whose contributions are isolated by ablations (SARL vs SERL vs SJRL; NACS/NVCS vs Causal PIBT), so they are not load-bearing unverified premises. The Section 5.2 comparison against HMAGAT/MAGAT+/SILLM is confounded by model mismatch (LMAPF-R2 vs standard LMAPF), and the paper explicitly concedes this: 'A key reason is that SARL and SJRL adopt the LMAPF-R2 model, whereas the other methods use the standard LMAPF model.' That is a benchmark-fairness limitation, not a circular derivation, because the comparison outcome is empirical rather than forced by construction. No equation or fitted parameter in the paper is equivalent by construction to the claimed outputs.

Assumptions & free parameters 5 free parameters · 5 assumptions · 1 invented entities

The central claim rests on the LMAPF-R2 model abstraction, on the assumption that the two learned policies cooperate as intended, and on a set of hand-chosen hyperparameters and network design choices. No new physical entities are introduced; the 'virtual agents' are an algorithmic device. The evaluation does not include cross-map generalization or a full physical-robot deployment, so the domain assumptions about real-world fidelity remain unverified.

free parameters (5)
  • Initial mean edge cost = 5.5
    The environment policy's output layer bias is set so the mean edge cost starts at 5.5, the midpoint of the allowed [1,10] range. This value is chosen by hand, and Appendix C.2 shows that expert-based initializations (e.g., 3 and 7 for preferred directions) improve results, indicating sensitivity to this choice.
  • Edge cost range = [1,10]
    The arctan-based transformation maps predicted costs to the interval [1,10]. This bound is a hand-chosen design parameter that constrains the guidance graph.
  • Agent local view size = 11x11
    The agent policy observes an 11x11 grid around itself, which limits the scope of local coordination. This is a hand-chosen architecture parameter.
  • Team reward neighborhood size = 5x5
    Each agent receives a team reward from other agents within a 5x5 window, encouraging local cooperation. The window size is chosen by hand.
  • Entropy loss weight = 0
    The PPO entropy coefficient is set to zero, eliminating explicit exploration incentives. The paper relies on Causal PIBT's search to provide exploration, which is a deliberate but hand-chosen setting.
assumptions (5)
  • domain assumption The robust constraint (no following collisions) is sufficient to guarantee a minimum safe distance between differential-drive robots in warehouses.
    Section 2 defines LMAPF-R2 with this constraint and motivates it from real-world warehouses, but no experiments or measurements are provided to validate that one-vertex separation matches actual safety requirements.
  • domain assumption The 4-neighbor grid graph with in-place rotations faithfully models the kinematics of the target robots.
    The problem formulation in Section 2 restricts agents to four orientations and 90-degree turns; the paper cites prior work on rotation modeling but does not verify this abstraction against physical robot data in the main experiments.
  • domain assumption Training on a single map with 256 agents generalizes to 32 to 320 agents on the same map with random starts and goals.
    Section 5 states that evaluation uses different initial states, goal locations, and agent counts on the same maps, but only within-map generalization is tested, not cross-map transfer.
  • ad hoc to paper Treating Causal PIBT as part of the environment during RL training does not bias the policy gradient.
    Section 4.2 states that PPO optimizes the policy 'directly without correcting policy gradients for the action modifications introduced by Causal PIBT.' This is a simplifying assumption commonly made in search-aided RL, but it is not justified formally.
  • domain assumption The environment policy's edge costs, generated by a CNN, provide guidance that is complementary to the agent policy.
    This is the key design hypothesis of SJRL, tested through ablations in Section 5.1, but the mechanism by which the two policies reinforce each other is not analyzed beyond empirical comparisons.
invented entities (1)
  • Virtual agents (one per graph edge)
    purpose: Each edge is treated as a virtual agent that predicts a Gaussian cost, enabling MAPPO to train the environment policy.
    This is a conceptual reframing to fit the environment policy into a multi-agent RL framework. There is no falsifiable prediction or physical counterpart outside the algorithm; it is a modeling device.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Search-Aided Joint Agent-Environment Reinforcement Learning for Robust Lifelong Multi-Agent Path Finding with Rotations." pith.science (2026). https://pith.science/paper/7A4NJCGI

@misc{pith2026260805588,
  author       = {Pith},
  title        = {Pith review of: Search-Aided Joint Agent-Environment Reinforcement Learning for Robust Lifelong Multi-Agent Path Finding with Rotations},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/7A4NJCGI}},
  note         = {Machine review of arXiv:2608.05588}
}
read the original abstract

Lifelong Multi-Agent Path Finding (LMAPF) requires repeatedly planning collision-free paths for agents that continuously receive new goals upon reaching their current ones. While many learning-based planners have been proposed for LMAPF, most rely on oversimplified kinematic assumptions that may overlook motion constraints critical to real-world performance. In this work, we study a more realistic LMAPF model derived from many real-world automated warehouse systems, termed LMAPF-R2, which incorporates robust safety constraints and in-place rotation constraints. These constraints substantially increase coordination difficulty, particularly in highly constrained spaces. To address these challenges, we propose Search-Aided Joint Reinforcement Learning (SJRL). We first augment neural policies with Causal PIBT, a single-step search-based planner that resolves agents' collisions and propagates their intentions. We then introduce a unified RL formulation that jointly optimizes agent and environment policies, where the environment policy learns graph edge costs to provide global movement guidance via backward Dijkstra search. Experiments demonstrate that SJRL achieves significant improvements over the strong search-based planner, Causal-PIBT, across multiple high-density maps. We further validate SJRL in a challenging mixed-reality warehouse environment with 8 physical robots and 248 virtual robots.

Figures

Figures reproduced from arXiv: 2608.05588 by the authors.

Figure 1
Figure 1. Heatmaps of average wait actions on a sortation [PITH_FULL_IMAGE:figures/full_fig_p001_1.png] view at source ↗
Figure 2
Figure 2. Markov Decision Process (MDP) from the perspective of the environment and the red agent. Upper circles represent [PITH_FULL_IMAGE:figures/full_fig_p004_2.png] view at source ↗
Figure 3
Figure 3. Illustration of the exploration challenge for nine [PITH_FULL_IMAGE:figures/full_fig_p004_3.png] view at source ↗
Figures from the paper (11 more)
Figure 4
Figure 4. Figure 4: Neural policies for the environment and two communicating agents. Orange blocks denote learning modules, blue [PITH_FULL_IMAGE:figures/full_fig_p005_4.png]
Figure 5
Figure 5. Figure 5: Ablation study on joint policy learning (Sec [PITH_FULL_IMAGE:figures/full_fig_p006_5.png]
Figure 6
Figure 6. Figure 6: Comparison of mean pairwise distance (MPD) [PITH_FULL_IMAGE:figures/full_fig_p006_6.png]
Figure 7
Figure 7. Figure 7: Comparison between SARL, SJRL and other state [PITH_FULL_IMAGE:figures/full_fig_p007_7.png]
Figure 9
Figure 9. Figure 9: Throughput comparison between policies with and [PITH_FULL_IMAGE:figures/full_fig_p011_9.png]
Figure 12
Figure 12. Figure 12: Heatmaps of average wait actions on the Ware [PITH_FULL_IMAGE:figures/full_fig_p012_12.png]
Figure 13
Figure 13. Figure 13: Heatmaps of average wait actions on the Sortation [PITH_FULL_IMAGE:figures/full_fig_p012_13.png]
Figure 11
Figure 11. Figure 11: Comparison between SARL, SJRL and other state [PITH_FULL_IMAGE:figures/full_fig_p012_11.png]
Figure 14
Figure 14. Figure 14: Heatmaps of average wait actions on the Paris [PITH_FULL_IMAGE:figures/full_fig_p013_14.png]
Figure 15
Figure 15. Figure 15: Heatmaps of average wait actions on the Empty [PITH_FULL_IMAGE:figures/full_fig_p013_15.png]
Figure 16
Figure 16. Figure 16: Heatmaps of average wait actions on the Random [PITH_FULL_IMAGE:figures/full_fig_p013_16.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

83 extracted references · 71 canonical work pages

  1. [1]

    Proceedings of the AAAI Conference on Artificial Intelligence (AAAI) , volume=

    Structure and intractability of optimal multi-robot path planning on graphs , author=. Proceedings of the AAAI Conference on Artificial Intelligence (AAAI) , volume=

  2. [2]

    Proceedings of the International Joint Conference on Artificial Intelligence (IJCAI) , pages =

    Yulun Zhang and He Jiang and Varun Bhatt and Stefanos Nikolaidis and Jiaoyang Li , title =. Proceedings of the International Joint Conference on Artificial Intelligence (IJCAI) , pages =

  3. [3]

    Efficient Bounded-Suboptimal Multi-Agent Path Finding and Motion Planning via Improvements to Focal Search

    Liron Cohen. Efficient Bounded-Suboptimal Multi-Agent Path Finding and Motion Planning via Improvements to Focal Search. 2020

  4. [4]

    Proceedings of the International Joint Conference on Artificial Intelligence, (IJCAI) , pages =

    Anytime Multi-Agent Path Finding via Large Neighborhood Search , author =. Proceedings of the International Joint Conference on Artificial Intelligence, (IJCAI) , pages =

  5. [5]

    AAMAS , pages =

    Minghua Liu and Hang Ma and Jiaoyang Li and Sven Koenig , title =. AAMAS , pages =

  6. [6]

    Proceedings of the International Symposium on Combinatorial Search (SoCS) , volume=

    Multi-Agent Pathfinding: Definitions, Variants, and Benchmarks , author=. Proceedings of the International Symposium on Combinatorial Search (SoCS) , volume=

  7. [7]

    Sturtevant , title =

    Guni Sharon and Roni Stern and Ariel Felner and Nathan R. Sturtevant , title =. Artificial Intelligence , volume =

  8. [8]

    Proceedings of the AAAI Conference on Artificial Intelligence , volume=

    Finding Optimal Solutions to Cooperative Pathfinding Problems , author=. Proceedings of the AAAI Conference on Artificial Intelligence , volume=

Show all 83 references
  1. [9]

    Proceedings of the AAAI Conference on Artificial Intelligence (AAAI) , volume=

    Traffic Flow Optimisation for Lifelong Multi-Agent Path Finding , author=. Proceedings of the AAAI Conference on Artificial Intelligence (AAAI) , volume=

  2. [10]

    IEEE Robotics and Automation Letters , volume=

    Mobile robot path planning in dynamic environments through globally guided reinforcement learning , author=. IEEE Robotics and Automation Letters , volume=. 2020 , publisher=

  3. [11]

    2023 , publisher=

    Lin, Qiushi and Ma, Hang , journal=. 2023 , publisher=

  4. [12]

    Proceedings of the AAAI Conference on Artificial Intelligence (AAAI) , volume=

    Decentralized Monte Carlo Tree Search for Partially Observable Multi-Agent Pathfinding , author=. Proceedings of the AAAI Conference on Artificial Intelligence (AAAI) , volume=

  5. [13]

    Proceedings of the International Symposium on Combinatorial Search , volume=

    Bootstrap learning of heuristic functions , author=. Proceedings of the International Symposium on Combinatorial Search , volume=

  6. [14]

    arXiv preprint arXiv:2407.14931 , year=

    POGEMA: A Benchmark Platform for Cooperative Multi-Agent Navigation , author=. arXiv preprint arXiv:2407.14931 , year=

  7. [15]

    2018 15th International Conference on Control, Automation, Robotics and Vision (ICARCV) , pages=

    Lifelong multi-agent path finding in a dynamic environment , author=. 2018 15th International Conference on Control, Automation, Robotics and Vision (ICARCV) , pages=. 2018 , organization=

  8. [16]

    Proceedings of the AAAI Conference on Artificial Intelligence (AAAI) , volume=

    Lifelong Multi-Agent Path Finding in Large-Scale Warehouses , author=. Proceedings of the AAAI Conference on Artificial Intelligence (AAAI) , volume=

  9. [17]

    Proceedings of the 16th Conference on Autonomous Agents and MultiAgent Systems (AAMAS) , pages=

    Lifelong Multi-Agent Path Finding for Online Pickup and Delivery Tasks , author=. Proceedings of the 16th Conference on Autonomous Agents and MultiAgent Systems (AAMAS) , pages=

  10. [18]

    Proceedings of the International Joint Conference on Autonomous Agents and Multiagent Systems (AAMAS) , year=

    Task and path planning for multi-agent pickup and delivery , author=. Proceedings of the International Joint Conference on Autonomous Agents and Multiagent Systems (AAMAS) , year=

  11. [19]

    Artificial Intelligence , volume=

    Priority Inheritance with Backtracking for Iterative Multi-Agent Path Finding , author=. Artificial Intelligence , volume=. 2022 , publisher=

  12. [20]

    2021 , publisher=

    Damani, Mehul and Luo, Zhiyao and Wenzel, Emerson and Sartoretti, Guillaume , journal=. 2021 , publisher=

  13. [21]

    Proceedings of the AAAI Conference on Artificial Intelligence (AAAI) , volume=

    Learn to Follow: Decentralized Lifelong Multi-Agent Pathfinding via Planning and Learning , author=. Proceedings of the AAAI Conference on Artificial Intelligence (AAAI) , volume=

  14. [22]

    2019 , publisher=

    Sartoretti, Guillaume and Kerr, Justin and Shi, Yunfei and Wagner, Glenn and Kumar, TK Satish and Koenig, Sven and Choset, Howie , journal=. 2019 , publisher=

  15. [23]

    Wang, Yutong and Xiang, Bairan and Huang, Shinan and Sartoretti, Guillaume , booktitle=

  16. [24]

    Proceedings of the AAAI Conference on Artificial Intelligence , volume=

    LNS2+ RL: Combining multi-agent reinforcement learning with large neighborhood search in multi-agent path finding , author=. Proceedings of the AAAI Conference on Artificial Intelligence , volume=

  17. [25]

    Liu, Zuxin and Chen, Baiming and Zhou, Hongyi and Koushik, Guru and Hebert, Martial and Zhao, Ding , booktitle=

  18. [26]

    2024 IEEE International Conference on Robotics and Automation (ICRA) , pages=

    Alpha: Attention-based long-horizon pathfinding in highly-structured areas , author=. 2024 IEEE International Conference on Robotics and Automation (ICRA) , pages=. 2024 , organization=

  19. [27]

    IEEE Robotics and Automation Letters , volume=

    Learning Selective Communication for Multi-Agent Path Finding , author=. IEEE Robotics and Automation Letters , volume=. 2021 , publisher=

  20. [28]

    IEEE Robotics and Automation Letters , volume=

    Message-Aware Graph Attention Networks for Large-Scale Multi-Robot Path Planning , author=. IEEE Robotics and Automation Letters , volume=. 2021 , publisher=

  21. [29]

    Gao, Jianqi and Li, Yanjie and Yang, Xiaoqing and Tan, Mingshan , journal=

  22. [30]

    Improving Learnt Local

    Veerapaneni, Rishi and Wang, Qian and Ren, Kevin and Jakobsson, Arthur and Li, Jiaoyang and Likhachev, Maxim , booktitle=. Improving Learnt Local

  23. [31]

    Proceedings of the AAAI Conference on Artificial Intelligence (AAAI) , volume=

    Lacam: Search-Based Algorithm for Quick Multi-Agent Pathfinding , author=. Proceedings of the AAAI Conference on Artificial Intelligence (AAAI) , volume=

  24. [32]

    arXiv preprint arXiv:2201.09467 , year=

    Ctrms: Learning to construct cooperative timed roadmaps for multi-agent path planning in continuous spaces , author=. arXiv preprint arXiv:2201.09467 , year=

  25. [33]

    arXiv preprint arXiv:2404.03554 , year=

    No Panacea in Planning: Algorithm Selection for Suboptimal Multi-Agent Path Finding , author=. arXiv preprint arXiv:2404.03554 , year=

  26. [34]

    2023 IEEE International Conference on Robotics and Automation (ICRA) , pages=

    Congestion prediction for large fleets of mobile robots , author=. 2023 IEEE International Conference on Robotics and Automation (ICRA) , pages=. 2023 , organization=

  27. [35]

    IEEE International Conference on Robotics and Automation (ICRA) , pages=

    Distributed heuristic multi-agent path finding with communication , author=. IEEE International Conference on Robotics and Automation (ICRA) , pages=. 2021 , organization=

  28. [36]

    International Conference on Robotics and Automation (ICRA) , pages=

    Multi-agent path finding with prioritized communication learning , author=. International Conference on Robotics and Automation (ICRA) , pages=. 2022 , organization=

  29. [37]

    Proceedings of the International Symposium on Combinatorial Search , volume=

    Suboptimal variants of the conflict-based search algorithm for the multi-agent pathfinding problem , author=. Proceedings of the International Symposium on Combinatorial Search , volume=

  30. [38]

    Artificial intelligence , volume=

    Subdimensional expansion for multirobot path planning , author=. Artificial intelligence , volume=. 2015 , publisher=

  31. [39]

    Stuckey and Jiaoyang Li and Sven Koenig , title =

    Hang Ma and Daniel Harabor and Peter J. Stuckey and Jiaoyang Li and Sven Koenig , title =. AAAI , pages =

  32. [40]

    2013 , organization=

    Ferner, Cornelia and Wagner, Glenn and Choset, Howie , booktitle=. 2013 , organization=

  33. [41]

    Brown , title =

    Alan S. Brown , title =

  34. [42]

    2022 , booktitle =

    Yu, Chao and Velu, Akash and Vinitsky, Eugene and Gao, Jiaxuan and Wang, Yu and Bayen, Alexandre and Wu, Yi , title =. 2022 , booktitle =

  35. [43]

    Proceedings of the International Joint Conference on Artificial Intelligence (IJCAI) , pages =

    Priority Inheritance with Backtracking for Iterative Multi-agent Path Finding , author =. Proceedings of the International Joint Conference on Artificial Intelligence (IJCAI) , pages =

  36. [44]

    IEEE Transactions on Robotics , volume=

    Receding horizon re-ordering of multi-agent execution schedules , author=. IEEE Transactions on Robotics , volume=. 2023 , publisher=

  37. [45]

    arXiv preprint arXiv:2010.05254 , year=

    A feedback scheme to reorder a multi-agent execution schedule by persistently optimizing a switchable action dependency graph , author=. arXiv preprint arXiv:2010.05254 , year=

  38. [46]

    Proceedings of the International Conference on Control, Automation, Robotics and Vision (ICARCV) , pages=

    Multi-Agent Pathfinding for Deadlock Avoidance on Rotational Movements , author=. Proceedings of the International Conference on Control, Automation, Robotics and Vision (ICARCV) , pages=

  39. [47]

    IEEE International Conference on Automation Science and Engineering (CASE) , pages=

    Fast Multi-Agent Path Planning with Turn Actions: A Priority Inheritance Approach , author=. IEEE International Conference on Automation Science and Engineering (CASE) , pages=

  40. [48]

    Proceedings of the International Symposium on Combinatorial Search (SoCS) , pages=

    Efficient Multi-Agent Path Finding with Turn Actions , author=. Proceedings of the International Symposium on Combinatorial Search (SoCS) , pages=

  41. [49]

    ICAPS 2024 System's Demonstration track , year=

    The League of Robot Runners Competition: Goals, Designs, and Implementation , author=. ICAPS 2024 System's Demonstration track , year=

  42. [50]

    Proceedings of the International Symposium on Combinatorial Search (SoCS) , pages =

    He Jiang and Yulun Zhang and Rishi Veerapaneni and Jiaoyang Li , title =. Proceedings of the International Symposium on Combinatorial Search (SoCS) , pages =

  43. [51]

    Advancing MAPF Towards the Real World: A Scalable Multi-Agent Realistic Testbed (

    Yan, Jingtian and Li, Zhifei and Kang, William and Zheng, Kevin and Zhang, Yulun and Chen, Zhe and Zhang, Yue and Harabor, Daniel and Smith, Stephen F and Li, Jiaoyang , journal=. Advancing MAPF Towards the Real World: A Scalable Multi-Agent Realistic Testbed (

  44. [52]

    Enhancing

    Yukhnevich, Egor and Andreychuk, Anton , journal=. Enhancing

  45. [53]

    Proceedings of the international symposium on combinatorial search , volume=

    Which MAPF Model Works Best for Automated Warehousing? , author=. Proceedings of the international symposium on combinatorial search , volume=

  46. [54]

    Proceedings of the International Conference on Automated Planning and Scheduling , volume=

    Multi-agent path finding with kinematic constraints , author=. Proceedings of the International Conference on Automated Planning and Scheduling , volume=

  47. [55]

    IEEE Robotics and Automation Letters , volume=

    Persistent and Robust Execution of MAPF Schedules in Warehouses , author=. IEEE Robotics and Automation Letters , volume=. 2019 , publisher=

  48. [56]

    P3GASUS: Pre-Planned Path Execution Graphs for Multi-Agent Systems at Ultra-Large Scale , year=

    Duhan, Tanishq and He, Chengyang and Sartoretti, Guillaume , journal=. P3GASUS: Pre-Planned Path Execution Graphs for Multi-Agent Systems at Ultra-Large Scale , year=

  49. [57]

    Proceedings of the AAAI Conference on Artificial Intelligence , volume=

    Multi-Agent Motion Planning for Differential Drive Robots Through Stationary State Search , author=. Proceedings of the AAAI Conference on Artificial Intelligence , volume=

  50. [58]

    Chakravarty, Arjo and Grey, Michael X and Muthugala, M. A. Viraj J. and Elara, Mohan Rajesh , booktitle=. Extending

  51. [59]

    arXiv preprint arXiv:2510.00425 , year=

    Conflict-Based Search as a Protocol: A Multi-Agent Motion Planning Protocol for Heterogeneous Agents, Solvers, and Independent Tasks , author=. arXiv preprint arXiv:2510.00425 , year=

  52. [60]

    Robotics and Autonomous Systems , volume=

    CL-MAPF: Multi-Agent Path Finding for Car-Like Robots with Kinematic and Spatiotemporal Constraints , author=. Robotics and Autonomous Systems , volume=. 2022 , publisher=

  53. [61]

    2026 , pages =

    db-LaCAM: Fast and Scalable Multi-Robot Kinodynamic Motion Planning with Discontinuity-Bounded Search and Lightweight MAPF , author =. 2026 , pages =

  54. [62]

    Journal of Artificial Intelligence Research , volume=

    Robust Multi-Agent Path Finding and Executing , author=. Journal of Artificial Intelligence Research , volume=

  55. [63]

    Proceedings of the international symposium on combinatorial search , volume=

    Robust multi-agent path finding , author=. Proceedings of the international symposium on combinatorial search , volume=

  56. [64]

    Proceedings of the International Conference on Automated Planning and Scheduling (ICAPS) , volume=

    Probabilistic Robust Multi-Agent Path Finding , author=. Proceedings of the International Conference on Automated Planning and Scheduling (ICAPS) , volume=

  57. [65]

    Proceedings of the AAAI Conference on Artificial Intelligence , volume=

    Symmetry Breaking for k-Robust Multi-Agent Path Finding , author=. Proceedings of the AAAI Conference on Artificial Intelligence , volume=

  58. [66]

    Proceedings of the IEEE International Conference on Robotics and Automation (ICRA) , pages=

    Deploying Ten Thousand Robots: Scalable Imitation Learning for Lifelong Multi-Agent Path Finding , author=. Proceedings of the IEEE International Conference on Robotics and Automation (ICRA) , pages=

  59. [67]

    Proceedings of the AAAI Conference on Artificial Intelligence (AAAI) , volume=

    MAPF-GPT: Imitation Learning for Multi-Agent Pathfinding at Scale , author=. Proceedings of the AAAI Conference on Artificial Intelligence (AAAI) , volume=

  60. [68]

    IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) , pages=

    Advancing Learnable Multi-Agent Pathfinding Solvers with Active Fine-Tuning , author=. IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) , pages=. 2025 , organization=

  61. [69]

    International Conference on Learning Representations (ICLR) , year =

    Pairwise is Not Enough: Hypergraph Neural Networks for Multi-Agent Pathfinding , author =. International Conference on Learning Representations (ICLR) , year =

  62. [70]

    Proceedings of the AAAI Conference on Artificial Intelligence (AAAI) , volume =

    Graph Attention-Guided Search for Dense Multi-Agent Pathfinding , author =. Proceedings of the AAAI Conference on Artificial Intelligence (AAAI) , volume =

  63. [71]

    arXiv preprint arXiv:2308.04292 , year=

    Engineering LaCAM*: Towards Real-Time, Large-Scale, and Near-Optimal Multi-Agent Pathfinding , author=. arXiv preprint arXiv:2308.04292 , year=

  64. [72]

    Work Smarter Not Harder: Simple Imitation Learning with

    Veerapaneni, Rishi and Jakobsson, Arthur and Ren, Kevin and Kim, Samuel and Li, Jiaoyang and Likhachev, Maxim , booktitle=. Work Smarter Not Harder: Simple Imitation Learning with

  65. [73]

    Proceedings of the AAAI Conference on Artificial Intelligence (AAAI) , pages=

    Time-Independent Planning for Multiple Moving Agents , author=. Proceedings of the AAAI Conference on Artificial Intelligence (AAAI) , pages=

  66. [74]

    Proceedings of the AAAI Conference on Artificial Intelligence (AAAI) , pages=

    Online Guidance Graph Optimization for Lifelong Multi-Agent Path Finding , author=. Proceedings of the AAAI Conference on Artificial Intelligence (AAAI) , pages=

  67. [75]

    Hansen, Nikolaus , journal=. The

  68. [76]

    Co-Optimizing Reconfigurable Environments and Policies for Decentralized Multiagent Navigation , year=

    Gao, Zhan and Yang, Guang and Prorok, Amanda , journal=. Co-Optimizing Reconfigurable Environments and Policies for Decentralized Multiagent Navigation , year=

  69. [77]

    arXiv preprint arXiv:2511.03100 , year=

    Scaling Multi-Agent Environment Co-Design with Diffusion Models , author=. arXiv preprint arXiv:2511.03100 , year=

  70. [78]

    arXiv preprint arXiv:1707.06347 , year=

    Proximal Policy Optimization Algorithms , author=. arXiv preprint arXiv:1707.06347 , year=

  71. [79]

    , title =

    NaturalPoint, Inc. , title =. 2026 , note =

  72. [80]

    arXiv preprint arXiv:2511.09331 , year=

    CoRL-MPPI: Enhancing MPPI with Learnable Behaviours for Efficient and Provably-Safe Multi-Robot Collision Avoidance , author=. arXiv preprint arXiv:2511.09331 , year=

  73. [81]

    Proceedings of the AAAI Conference on Artificial Intelligence (AAAI) , pages=

    CAMAR: Continuous Actions Multi-Agent Routing , author=. Proceedings of the AAAI Conference on Artificial Intelligence (AAAI) , pages=

  74. [82]

    IEEE International Conference on Robotics and Automation (ICRA) , pages=

    MARF: Cooperative Multi-Agent Path Finding with Reinforcement Learning and Frenet Lattice in Dynamic Environments , author=. IEEE International Conference on Robotics and Automation (ICRA) , pages=

  75. [83]

    Mean-Field Deep Reinforcement Learning for Multi-Agent Path Finding , year=

    Huo, Lin and Mao, Jianlin and San, Hongjun and Li, Ruiqi and Xuan, Zhiwei , journal=. Mean-Field Deep Reinforcement Learning for Multi-Agent Path Finding , year=

Pith tools

Reviewed August 8, 2026 · model on record in the stance chip above.