A Conflict-Aware Optimal Goal Assignment Algorithm for Multi-Robot Systems

Aakash,Indranil Saha
2024-02-20
Abstract:The fundamental goal assignment problem for a multi-robot application aims to assign a unique goal to each robot while ensuring collision-free paths, minimizing the total movement cost. A plausible algorithmic solution to this NP-hard problem involves an iterative process that integrates a task planner to compute the goal assignment while ignoring the collision possibilities among the robots and a multi-agent path-finding algorithm to find the collision-free trajectories for a given assignment. This procedure involves a method for computing the next best assignment given the current best assignment. A naive way of computing the next best assignment, as done in the state-of-the-art solutions, becomes a roadblock to achieving scalability in solving the overall problem. To obviate this bottleneck, we propose an efficient conflict-guided method to compute the next best assignment. Additionally, we introduce two more optimizations to the algorithm -- first for avoiding the unconstrained path computations between robot-goal pairs wherever possible, and the second to prevent duplicate constrained path computations for multiple robot-goal pairs. We extensively evaluate our algorithm for up to a hundred robots on several benchmark workspaces. The results demonstrate that the proposed algorithm achieves nearly an order of magnitude speedup over the state-of-the-art algorithm, showcasing its efficacy in real-world scenarios.
Multiagent Systems,Artificial Intelligence,Robotics
What problem does this paper attempt to address?
This paper attempts to solve the target assignment problem in multi - robot systems. That is, given the initial positions of a set of robots and a set of target positions, how to assign a unique target to each robot while ensuring collision - free paths and minimizing the total movement cost. This is an NP - hard problem. Existing solutions usually involve a task planner calculating the target assignment while ignoring potential collisions between robots, and then using a multi - agent path - finding algorithm to find collision - free trajectories for the given assignment. However, this traditional method is inefficient in calculating the next best assignment and becomes a bottleneck in achieving the overall problem scalability. To overcome this bottleneck, the author proposes an effective conflict - guided method to calculate the next best assignment. In addition, the author also introduces two optimization techniques: one is to avoid calculating unconstrained paths between robot - target pairs as much as possible; the second is to prevent repeated calculation of constrained paths for multiple robot - target pairs. Through these improvements, the author's method is nearly an order of magnitude faster than the existing state - of - the - art algorithms when dealing with benchmark workspaces of up to 100 robots, demonstrating its effectiveness in practical scenarios.