This repository provides C++ Implementation of the Binary Branching Multi-Objective Conflict-Based Search (BB-MO-CBS) algorithm [1] for Multi-Objective Multi-Agent Path Finding problem. This project is still under active development.
BB-MO-CBS is a successor of our prior MO-CBS [2], whose repo can be found here.
The code is distributed for academic and non-commercial use. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- We use CMake (3.16.3) and Make (4.2.1) on Ubuntu 20.04 to compile the code. Lower or higher version may also work.
- We use C++11. Lower or higher version of C++ may also work.
- We massively use C++ STL, which is very common in C++ programming nowadays. We do not use any third-party libraries, and this package should be straightfoward to compile by following the instructions below.
README.md
- This filecpp/source/
- Contains the path planning source codecpp/test/
- Contains example code for MO-CBS algorithmscpp/include/
- Contains header files
- Clone this repo
- Compile this repo
mkdir build
cd build
cmake ..
(You can specify the build type you like by adding additional args)make
- Run example in
./test_bb_mocbs
- This example shows how to use the code.
- For some historical reason, the classes related to BB-MO-CBS is often named with "NB" where NB stands for node-based. This name "Node-Based" is no more used and the real name should be Binary Branching (BB).
Please cite the corresponding papers if you find anything in this repository helpful.
-
[1] Binary Branching Multi-Objective Conflict-Based Search for Multi-Agent Path Finding
Zhongqiang Ren, Jiaoyang Li, Han Zhang, Sven Koenig, Sivakumar Rathinam and Howie Choset.
International Conference on Automated Planning and Scheduling (ICAPS), 2023.
[Bibtex] [Paper] -
[2] A Conflict-Based Search Framework for Multi-Objective Multi-Agent Path Finding
Zhongqiang Ren, Sivakumar Rathinam, and Howie Choset.
IEEE Transactions on Automation Science and Engineering (T-ASE), 2022.
[Bibtex] [Paper]