# ompl **Repository Path**: qingcheng25/ompl ## Basic Information - **Project Name**: ompl - **Description**: No description available - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2022-01-19 - **Last Updated**: 2024-06-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README The Open Motion Planning Library (OMPL) ======================================= Linux / macOS [![Build Status](https://travis-ci.org/ompl/ompl.svg?branch=main)](https://travis-ci.org/ompl/ompl) Windows [![Build status](https://ci.appveyor.com/api/projects/status/valuv9sabye1y35n/branch/main?svg=true)](https://ci.appveyor.com/project/mamoll/ompl/branch/main) Visit the [OMPL installation page](https://ompl.kavrakilab.org/core/installation.html) for detailed installation instructions. OMPL has the following required dependencies: * [Boost](https://www.boost.org) (version 1.58 or higher) * [CMake](https://www.cmake.org) (version 3.5 or higher) * [Eigen](http://eigen.tuxfamily.org) (version 3.3 or higher) The following dependencies are optional: * [ODE](http://ode.org) (needed to compile support for planning using the Open Dynamics Engine) * [Py++](https://github.com/ompl/ompl/blob/main/doc/markdown/installPyPlusPlus.md) (needed to generate Python bindings) * [Doxygen](http://www.doxygen.org) (needed to create a local copy of the documentation at https://ompl.kavrakilab.org/core) Once dependencies are installed, you can build OMPL on Linux, macOS, and MS Windows. Go to the top-level directory of OMPL and type the following commands: mkdir -p build/Release cd build/Release cmake ../.. # next step is optional make -j 4 update_bindings # if you want Python bindings make -j 4 # replace "4" with the number of cores on your machine