Develop a hybrid Conflict-Based Search (CBS) + RRT* framework for multi-robot path planning in continuous 3D spaces, combining CBS’s optimal conflict resolution with RRT*’s adaptability to high-dimensional environments and enable coordinated drone–arm systems to navigate overlapping workspaces efficiently and collision-free.
Coordinating multiple robots in shared 3D workspaces remains one of the hardest challenges in autonomous systems. Traditional planners either ensure optimality but struggle with scalability (like CBS) or handle continuous motion but lack global coordination (like RRT*).
This project was motivated by the need for a hybrid framework that merges discrete conflict resolution with continuous sampling-based planning, enabling drones and manipulators to operate collaboratively in overlapping environments. By combining CBS for inter-agent coordination and RRT* for smooth, kinodynamically feasible motion, the system achieves scalable, collision-free multi-robot planning suited for real-world applications such as warehouse automation, exploration, and cooperative manipulation.
Modeled drone–arm pairs as two-phase agents performing payload delivery and pickup.
Drones operate in discrete 3D grids, arms in continuous joint space.
Conflicts resolved at the CBS high level.
Implemented RRT* with rewiring for arms (joint-space sampling) and discrete 3D RRT* for drones.
Used goal bias, neighbor radius, and collision checking via PyBullet.
Ensured asymptotic optimality while respecting CBS constraints.
Implemented constraint tree, collision detection, and best-first node expansion.
Each CBS node stores paths, constraints, costs, and collisions.
Replans only affected agents to maintain computational efficiency
Stepwise integration of CBS and RRT* planners for multi-robot coordination.
Developed a PyBullet simulation for both drones and UR5e arms.
Evaluated on multiple scenarios with varying workspace overlap.
Achieved scalable coordination for up to four UR5e arms and multiple drones in 3D.
CBS-RRT* improved collision-free planning success by > 90% compared to individual RRT* runs.
Hybrid A* + RRT* reduced drone planning time by 2–3 orders of magnitude.
Maintained asymptotic optimality and improved path efficiency in overlapping joint spaces.
CBS-RRT* bridges discrete and continuous planning, enabling real-time multi-robot coordination for drones and manipulators in shared 3D spaces.
It lays the foundation for warehouse automation, aerial-ground collaboration, and space robotics, supporting scalable conflict-free planning in dynamic environments.