# ompl **Repository Path**: orangeccccc/ompl ## Basic Information - **Project Name**: ompl - **Description**: No description available - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-02-23 - **Last Updated**: 2024-07-12 ## 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=master)](https://travis-ci.org/ompl/ompl) Windows [![Build status](https://ci.appveyor.com/api/projects/status/valuv9sabye1y35n/branch/master?svg=true)](https://ci.appveyor.com/project/mamoll/ompl/branch/master) 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://bitbucket.org/ompl/ompl/src/tip/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