This package is the Trajectory toolbox of the RobOptim framework. It contains parametric curve definitions, cost functions, constraints and tools to optimize trajectories. It is released under the LGPL-3 license.
Warning: this repository contains Git
submodules. Please clone this repository using the
git clone --recursive
command. If you already have cloned the
repository, you can run git submodule init && git submodule update
to retrieve the submodules.
For general information about the project, please refer to its homepage: http://www.roboptim.net/
To get started with this library, please read the online Doxygen documentation.
It can also be generated locally by running the make doc
command. After the package is installed, the documentation will be
located in the $prefix/share/doc/roboptim-trajectory
directory where
$prefix
is your installation prefix (/usr/local
by default).
Support is provided through:
- the RobOptim mailing-list: [email protected]
- the following HipChat room: http://www.hipchat.com/gh4wQrZeV
STOP!
First question: do you need to compile this package from source manually?
The answer is yes if:
- There is no native package available for your system and you do not want to use an external system such as RobotPkg to handle your dependencies.
- You want to develop new features for this package and you do not want to use RobotPkg on top of your system to handle this.
If the answer is yes, then please proceed. Otherwise, please checkout the "Available Package" section at the end of this page.
RobOptim uses the following tools:
- RobOptim Core dependencies:
- Git a source content management system
- CMake (>= 2.8) a build system
- pkg-config dependency tracking tool
- Doxygen a documentation generation tool
- Boost C++ library
- Eigen C++ template library for linear algebra
- log4cxx logging framework
- Libtool and its ltdl library for portable plug-in management
- a C++03 compliant modern C++ compiler such as GCC or clang
- roboptim-core (the package itself)
- to run the tests, a plug-in for a non-linear solver is also needed
The manual compilation requires two steps:
- configuration of the build and generation of the build files
- compilation of the sources and installation of the package
roboptim-trajectory uses CMake to generate build files. It is recommended to create a separate build directory:
mkdir _build # (1) Create a build directory
cd _build # (2) Go to the newly created build directory
cmake [options] .. # (3) Generate the build files
Options which can be passed to CMake are detailed in the next section.
make # (4) Compile the package
make test # (5) Execute the package tests
make install # (6) Install the package into the prefix (see step 3)
Additional options can be set on the command line through the
following command: -D<option>=<value>
.
For instance: cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo ..
will set
the CMAKE_BUILD_TYPE
option to the value RelWithDebInfo
.
Available options are:
CMAKE_BUILD_TYPE
set the build profile that should be used (debug, release, etc.). We recommendRelWithDebInfo
as it will provide performances while keeping debugging symbols enabled.CMAKE_INSTALL_PREFIX
set the installation prefix (the directory where the software will be copied to after it has been compiled).TESTSUITE_SOLVER
set which solver will be used to run the tests.ipopt
is recommended as we regularly check with this plug-in. Using other solvers (cfsqp
,nag-nlp
, etc.), some tests may fail.
All the tests launched by the test suite can be prefixed
with the environment variable CHECK_PREFIX
.
cmake -DCHECK_PREFIX='valgrind --log-file=valgrind.log' ..
make && make test
If you want to contribute, please refer to the CONTRIBUTING.md file.
This package authors are credited in the AUTHORS file.
- Fedora (Release 0.5): https://apps.fedoraproject.org/packages/roboptim-trajectory
- RobotPkg (Release 3.1): http://robotpkg.openrobots.org/robotpkg/optimization/roboptim-trajectory/