ymontmarin / mim_solvers

Implementation of numerical solvers used in the Machines in Motion Laboratory

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

mim_solvers

Implementation of numerical solvers used in the Machines in Motion Laboratory. In particular, the Sequential Quadratic Programming (SQP) solver described in this paper solves nonlinear constrained OCPs efficiently.

All solvers are implemented by using Crocoddyl (v2.0) as the base software. Consequently, Crocoddyl users can use our efficient solvers while constructing their OCPs using the same API they are used to. The default solvers of Crocoddyl are also re-implemented for benchmarking purposes (namely DDP and FDDP) but with modified termination criteria and line-search.

Examples on how to use the solvers can be found in the examples directory.

Dependencies

Installation

Using conda

conda install mim-solvers --channel conda-forge

Using CMake

git clone --recursive https://github.com/machines-in-motion/mim_solvers.git

cd mim_solvers && mkdir build && cd build

cmake .. [-DCMAKE_BUILD_TYPE=Release] [-DCMAKE_INSTALL_PREFIX=...]

make [-j6] && make install

Contributors

About

Implementation of numerical solvers used in the Machines in Motion Laboratory

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:C++ 91.3%Language:Python 6.8%Language:CMake 1.9%