crocoddyl 2.0.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- crocoddyl-2.0.2/.cirrus.yml +26 -0
- crocoddyl-2.0.2/.git-blame-ignore-revs +2 -0
- crocoddyl-2.0.2/.github/ISSUE_TEMPLATE/bug_report.md +53 -0
- crocoddyl-2.0.2/.github/ISSUE_TEMPLATE/feature-request.md +20 -0
- crocoddyl-2.0.2/.github/dependabot.yml +6 -0
- crocoddyl-2.0.2/.github/workflows/conda/conda-env.yml +17 -0
- crocoddyl-2.0.2/.github/workflows/conda-ci.yml +112 -0
- crocoddyl-2.0.2/.github/workflows/macos-linux-pip.yml +32 -0
- crocoddyl-2.0.2/.github/workflows/release.yml +86 -0
- crocoddyl-2.0.2/.github/workflows/ros1-ci.yaml +47 -0
- crocoddyl-2.0.2/.github/workflows/ros2-ci.yaml +37 -0
- crocoddyl-2.0.2/.github/workflows/wheel.yml +64 -0
- crocoddyl-2.0.2/.gitignore +15 -0
- crocoddyl-2.0.2/.gitlab-ci.yml +1 -0
- crocoddyl-2.0.2/.gitmodules +3 -0
- crocoddyl-2.0.2/.pre-commit-config.yaml +56 -0
- crocoddyl-2.0.2/.yapfignore +1 -0
- crocoddyl-2.0.2/CHANGELOG.md +294 -0
- crocoddyl-2.0.2/CMakeLists.txt +268 -0
- crocoddyl-2.0.2/CONTRIBUTING.md +63 -0
- crocoddyl-2.0.2/LICENSE +31 -0
- crocoddyl-2.0.2/PKG-INFO +229 -0
- crocoddyl-2.0.2/PUBLICATIONS.md +79 -0
- crocoddyl-2.0.2/README.md +212 -0
- crocoddyl-2.0.2/benchmark/CMakeLists.txt +45 -0
- crocoddyl-2.0.2/benchmark/all-robots.cpp +503 -0
- crocoddyl-2.0.2/benchmark/arm-manipulation-optctrl.cpp +102 -0
- crocoddyl-2.0.2/benchmark/arm-manipulation-timings.cpp +532 -0
- crocoddyl-2.0.2/benchmark/arm_manipulation_optctrl.py +151 -0
- crocoddyl-2.0.2/benchmark/bipedal-timings.cpp +559 -0
- crocoddyl-2.0.2/benchmark/bipedal_walk_optctrl.py +110 -0
- crocoddyl-2.0.2/benchmark/boxqp.cpp +67 -0
- crocoddyl-2.0.2/benchmark/factory/arm-kinova.hpp +117 -0
- crocoddyl-2.0.2/benchmark/factory/arm.hpp +124 -0
- crocoddyl-2.0.2/benchmark/factory/legged-robots.hpp +177 -0
- crocoddyl-2.0.2/benchmark/factory/robot-ee-names.hpp +37 -0
- crocoddyl-2.0.2/benchmark/lqr-optctrl.cpp +84 -0
- crocoddyl-2.0.2/benchmark/lqr_optctrl.py +98 -0
- crocoddyl-2.0.2/benchmark/quadrupedal-gaits-optctrl.cpp +99 -0
- crocoddyl-2.0.2/benchmark/quadrupedal_gaits_optctrl.py +217 -0
- crocoddyl-2.0.2/benchmark/read_csv.py +81 -0
- crocoddyl-2.0.2/benchmark/unicycle-optctrl.cpp +81 -0
- crocoddyl-2.0.2/benchmark/unicycle_optctrl.py +96 -0
- crocoddyl-2.0.2/bindings/CMakeLists.txt +6 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/CMakeLists.txt +52 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/__init__.py +733 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/action-base.cpp +261 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/action-base.hpp +112 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/actions/diff-lqr.cpp +144 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/actions/lqr.cpp +119 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/actions/unicycle.cpp +98 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/activation-base.cpp +78 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/activation-base.hpp +65 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/activations/2norm-barrier.cpp +55 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/activations/quadratic-barrier.cpp +88 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/activations/quadratic-flat-exp.cpp +54 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/activations/quadratic-flat-log.cpp +53 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/activations/quadratic.cpp +50 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/activations/smooth-1norm.cpp +67 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/activations/smooth-2norm.cpp +52 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/activations/weighted-quadratic-barrier.cpp +72 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/activations/weighted-quadratic.cpp +57 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/actuation/actuation-squashing.cpp +105 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/actuation/squashing/smooth-sat.cpp +51 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/actuation/squashing-base.cpp +95 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/actuation/squashing-base.hpp +45 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/actuation-base.cpp +159 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/actuation-base.hpp +124 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/constraint-base.cpp +199 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/constraint-base.hpp +92 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/constraints/constraint-manager.cpp +283 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/constraints/residual.cpp +110 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/control-base.cpp +152 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/control-base.hpp +163 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/controls/poly-one.cpp +119 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/controls/poly-two-rk.cpp +124 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/controls/poly-zero.cpp +100 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/core.cpp +80 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/core.hpp +85 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/cost-base.cpp +239 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/cost-base.hpp +101 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/costs/cost-sum.cpp +254 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/costs/residual.cpp +106 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/data/actuation.cpp +33 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/data/joint.cpp +95 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/data-collector-base.cpp +27 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/diff-action-base.cpp +281 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/diff-action-base.hpp +115 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/integ-action-base.cpp +132 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/integ-action-base.hpp +88 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/integrator/euler.cpp +121 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/integrator/rk.cpp +216 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/integrator/rk4.cpp +210 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/numdiff/action.cpp +131 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/numdiff/activation.cpp +95 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/numdiff/diff-action.cpp +143 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/numdiff/state.cpp +111 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/optctrl/shooting.cpp +170 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/residual-base.cpp +187 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/residual-base.hpp +120 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/residuals/control.cpp +90 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/residuals/joint-acceleration.cpp +102 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/residuals/joint-effort.cpp +111 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/solver-base.cpp +276 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/solver-base.hpp +109 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/solvers/box-ddp.cpp +38 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/solvers/box-fddp.cpp +37 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/solvers/box-qp.cpp +115 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/solvers/ddp.cpp +244 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/solvers/fddp.cpp +81 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/solvers/intro.cpp +148 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/solvers/ipopt.cpp +62 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/solvers/kkt.cpp +121 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/state-base.cpp +153 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/state-base.hpp +317 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/states/euclidean.cpp +111 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/utils/callbacks.cpp +46 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/utils/exception.hpp +45 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/utils/excepton.cpp +27 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/utils/stop-watch.cpp +74 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/core/utils/stop-watch.hpp +32 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/crocoddyl.cpp +57 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/deprecated.py +53 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/fwd.hpp +25 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/actions/contact-fwddyn.cpp +221 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/actions/contact-invdyn.cpp +343 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/actions/free-fwddyn.cpp +165 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/actions/free-invdyn.cpp +230 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/actions/impulse-fwddyn.cpp +202 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/actuations/floating-base.cpp +79 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/actuations/full.cpp +72 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/actuations/multicopter-base.cpp +100 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/contact-base.cpp +136 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/contact-base.hpp +74 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/contacts/contact-1d.cpp +183 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/contacts/contact-2d.cpp +145 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/contacts/contact-3d.cpp +165 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/contacts/contact-6d.cpp +146 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/contacts/multiple-contacts.cpp +236 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/cop-support.cpp +65 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/data/contacts.cpp +77 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/data/impulses.cpp +45 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/data/multibody.cpp +57 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/force-base.cpp +73 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/friction-cone.cpp +110 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/impulse-base.cpp +127 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/impulse-base.hpp +78 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/impulses/impulse-3d.cpp +103 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/impulses/impulse-6d.cpp +98 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/impulses/multiple-impulses.cpp +215 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/multibody.cpp +63 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/multibody.hpp +71 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/residuals/centroidal-momentum.cpp +117 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/residuals/com-position.cpp +101 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/residuals/contact-control-gravity.cpp +105 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/residuals/contact-cop-position.cpp +119 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/residuals/contact-force.cpp +125 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/residuals/contact-friction-cone.cpp +126 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/residuals/contact-wrench-cone.cpp +121 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/residuals/control-gravity.cpp +98 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/residuals/frame-placement.cpp +122 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/residuals/frame-rotation.cpp +125 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/residuals/frame-translation.cpp +116 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/residuals/frame-velocity.cpp +113 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/residuals/impulse-com.cpp +106 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/residuals/pair-collision.cpp +105 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/residuals/state.cpp +95 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/states/multibody.cpp +126 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/multibody/wrench-cone.cpp +113 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/utils/__init__.py +0 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/utils/biped.py +726 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/utils/copyable.hpp +40 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/utils/deprecate.hpp +39 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/utils/map-converter.hpp +148 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/utils/pendulum.py +85 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/utils/printable.hpp +34 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/utils/quadruped.py +1129 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/utils/set-converter.hpp +150 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/utils/set_indexing_suite.hpp +170 -0
- crocoddyl-2.0.2/bindings/python/crocoddyl/utils/vector-converter.hpp +22 -0
- crocoddyl-2.0.2/cmake/.clang-format +4 -0
- crocoddyl-2.0.2/cmake/.cmake-format.py +240 -0
- crocoddyl-2.0.2/cmake/.docs/Makefile +177 -0
- crocoddyl-2.0.2/cmake/.docs/_static/css/cmake.css +4 -0
- crocoddyl-2.0.2/cmake/.docs/cmake.py +430 -0
- crocoddyl-2.0.2/cmake/.docs/conf.py +333 -0
- crocoddyl-2.0.2/cmake/.docs/examples/minimal-hpp.cmake +13 -0
- crocoddyl-2.0.2/cmake/.docs/examples/minimal-with-packages.cmake +28 -0
- crocoddyl-2.0.2/cmake/.docs/examples/minimal.cmake +12 -0
- crocoddyl-2.0.2/cmake/.docs/index.rst +39 -0
- crocoddyl-2.0.2/cmake/.docs/pages/base.rst +32 -0
- crocoddyl-2.0.2/cmake/.docs/pages/cmake-packages.rst +33 -0
- crocoddyl-2.0.2/cmake/.docs/pages/dependencies.rst +54 -0
- crocoddyl-2.0.2/cmake/.docs/pages/developers.rst +101 -0
- crocoddyl-2.0.2/cmake/.docs/pages/internal.rst +13 -0
- crocoddyl-2.0.2/cmake/.docs/pages/other.rst +38 -0
- crocoddyl-2.0.2/cmake/.docs/pages/projects.rst +22 -0
- crocoddyl-2.0.2/cmake/.git-blame-ignore-revs +2 -0
- crocoddyl-2.0.2/cmake/.github/workflows/cmake.yml +30 -0
- crocoddyl-2.0.2/cmake/.gitignore +4 -0
- crocoddyl-2.0.2/cmake/.pre-commit-config.yaml +54 -0
- crocoddyl-2.0.2/cmake/Config.cmake.in +154 -0
- crocoddyl-2.0.2/cmake/GNUInstallDirs.cmake +379 -0
- crocoddyl-2.0.2/cmake/LICENSE +4 -0
- crocoddyl-2.0.2/cmake/README.md +42 -0
- crocoddyl-2.0.2/cmake/_unittests/catkin/CMakeLists.txt +25 -0
- crocoddyl-2.0.2/cmake/_unittests/cpp/CMakeLists.txt +30 -0
- crocoddyl-2.0.2/cmake/_unittests/cpp/include/jrl_cmakemodule/lib.hh +1 -0
- crocoddyl-2.0.2/cmake/_unittests/cpp/src/lib.cc +6 -0
- crocoddyl-2.0.2/cmake/_unittests/cpp/src/main.cc +7 -0
- crocoddyl-2.0.2/cmake/_unittests/dependency/CMakeLists.txt +20 -0
- crocoddyl-2.0.2/cmake/_unittests/macros.cmake +11 -0
- crocoddyl-2.0.2/cmake/_unittests/python/CMakeLists.txt +20 -0
- crocoddyl-2.0.2/cmake/_unittests/python/jrl_cmakemodule/python.py +0 -0
- crocoddyl-2.0.2/cmake/_unittests/run_unit_tests.sh +76 -0
- crocoddyl-2.0.2/cmake/_unittests/test_pkg-config.cmake +45 -0
- crocoddyl-2.0.2/cmake/announce-gen +556 -0
- crocoddyl-2.0.2/cmake/apple.cmake +34 -0
- crocoddyl-2.0.2/cmake/base.cmake +390 -0
- crocoddyl-2.0.2/cmake/boost/FindBoost.cmake +2592 -0
- crocoddyl-2.0.2/cmake/boost.cmake +363 -0
- crocoddyl-2.0.2/cmake/catkin.cmake +21 -0
- crocoddyl-2.0.2/cmake/cmake_reinstall.cmake.in +18 -0
- crocoddyl-2.0.2/cmake/cmake_uninstall.cmake.in +85 -0
- crocoddyl-2.0.2/cmake/compiler.cmake +69 -0
- crocoddyl-2.0.2/cmake/componentConfig.cmake.in +23 -0
- crocoddyl-2.0.2/cmake/config.h.cmake +27 -0
- crocoddyl-2.0.2/cmake/config.hh.cmake +68 -0
- crocoddyl-2.0.2/cmake/coverage.cmake +94 -0
- crocoddyl-2.0.2/cmake/cpack.cmake +81 -0
- crocoddyl-2.0.2/cmake/createshexe.cmake +41 -0
- crocoddyl-2.0.2/cmake/cxx-standard.cmake +161 -0
- crocoddyl-2.0.2/cmake/cxx11.cmake +28 -0
- crocoddyl-2.0.2/cmake/cython/cython.cmake +787 -0
- crocoddyl-2.0.2/cmake/cython/dummy.cpp +0 -0
- crocoddyl-2.0.2/cmake/cython/python/FindPython/Support.cmake +1324 -0
- crocoddyl-2.0.2/cmake/cython/python/FindPython.cmake +224 -0
- crocoddyl-2.0.2/cmake/cython/python/FindPython2.cmake +189 -0
- crocoddyl-2.0.2/cmake/cython/python/FindPython3.cmake +189 -0
- crocoddyl-2.0.2/cmake/cython/python/README.md +6 -0
- crocoddyl-2.0.2/cmake/cython/setup.in.py +184 -0
- crocoddyl-2.0.2/cmake/debian.cmake +117 -0
- crocoddyl-2.0.2/cmake/deprecated.hh.cmake +56 -0
- crocoddyl-2.0.2/cmake/dist.cmake +132 -0
- crocoddyl-2.0.2/cmake/distcheck.cmake +140 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/LICENSE +202 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/MathJax.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/extensions/CHTML-preview.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/extensions/FontWarnings.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/extensions/HelpDialog.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/extensions/MatchWebFonts.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/extensions/MathEvents.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/extensions/MathMenu.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/extensions/MathZoom.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/extensions/Safe.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/extensions/TeX/AMScd.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/extensions/TeX/AMSmath.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/extensions/TeX/AMSsymbols.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/extensions/TeX/HTML.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/extensions/TeX/action.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/extensions/TeX/autobold.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/extensions/TeX/autoload-all.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/extensions/TeX/bbox.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/extensions/TeX/begingroup.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/extensions/TeX/boldsymbol.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/extensions/TeX/cancel.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/extensions/TeX/color.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/extensions/TeX/enclose.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/extensions/TeX/extpfeil.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/extensions/TeX/mathchoice.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/extensions/TeX/mediawiki-texvc.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/extensions/TeX/mhchem.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/extensions/TeX/newcommand.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/extensions/TeX/noErrors.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/extensions/TeX/noUndefined.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/extensions/TeX/unicode.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/extensions/TeX/verb.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/extensions/jsMath2jax.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/extensions/tex2jax.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/extensions/toMathML.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/element/mml/jax.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/element/mml/optable/Arrows.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/element/mml/optable/BasicLatin.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/element/mml/optable/CombDiacritMarks.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/element/mml/optable/CombDiactForSymbols.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/element/mml/optable/Dingbats.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/element/mml/optable/GeneralPunctuation.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/element/mml/optable/GeometricShapes.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/element/mml/optable/GreekAndCoptic.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/element/mml/optable/Latin1Supplement.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/element/mml/optable/LetterlikeSymbols.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/element/mml/optable/MathOperators.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/element/mml/optable/MiscMathSymbolsA.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/element/mml/optable/MiscMathSymbolsB.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/element/mml/optable/MiscSymbolsAndArrows.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/element/mml/optable/MiscTechnical.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/element/mml/optable/SpacingModLetters.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/element/mml/optable/SuppMathOperators.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/element/mml/optable/SupplementalArrowsA.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/element/mml/optable/SupplementalArrowsB.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/input/AsciiMath/config.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/input/AsciiMath/jax.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/input/MathML/config.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/input/MathML/entities/a.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/input/MathML/entities/b.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/input/MathML/entities/c.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/input/MathML/entities/d.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/input/MathML/entities/e.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/input/MathML/entities/f.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/input/MathML/entities/fr.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/input/MathML/entities/g.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/input/MathML/entities/h.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/input/MathML/entities/i.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/input/MathML/entities/j.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/input/MathML/entities/k.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/input/MathML/entities/l.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/input/MathML/entities/m.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/input/MathML/entities/n.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/input/MathML/entities/o.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/input/MathML/entities/opf.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/input/MathML/entities/p.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/input/MathML/entities/q.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/input/MathML/entities/r.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/input/MathML/entities/s.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/input/MathML/entities/scr.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/input/MathML/entities/t.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/input/MathML/entities/u.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/input/MathML/entities/v.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/input/MathML/entities/w.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/input/MathML/entities/x.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/input/MathML/entities/y.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/input/MathML/entities/z.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/input/MathML/jax.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/input/TeX/config.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/input/TeX/jax.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/CommonHTML/config.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/CommonHTML/jax.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/autoload/annotation-xml.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/autoload/maction.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/autoload/menclose.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/autoload/mglyph.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/autoload/mmultiscripts.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/autoload/ms.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/autoload/mtable.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/autoload/multiline.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/config.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/Arrows.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/BoxDrawing.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/CombDiacritMarks.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/Dingbats.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/EnclosedAlphanum.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/GeneralPunctuation.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/GeometricShapes.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/GreekAndCoptic.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/Latin1Supplement.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/LatinExtendedA.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/LetterlikeSymbols.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/Main.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/MathOperators.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/MiscSymbols.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/MiscTechnical.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/PUA.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/SpacingModLetters.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/SuppMathOperators.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Caligraphic/Bold/Main.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Caligraphic/Regular/Main.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Bold/BasicLatin.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Bold/Main.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Bold/Other.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Bold/PUA.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Regular/BasicLatin.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Regular/Main.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Regular/Other.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Regular/PUA.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/Arrows.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/BasicLatin.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/CombDiacritMarks.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/CombDiactForSymbols.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/GeneralPunctuation.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/GeometricShapes.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/GreekAndCoptic.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/Latin1Supplement.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedA.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedB.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/LetterlikeSymbols.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/Main.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/MathOperators.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/MiscMathSymbolsA.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/MiscSymbols.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/MiscTechnical.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/SpacingModLetters.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/SuppMathOperators.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/SupplementalArrowsA.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/BasicLatin.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/CombDiacritMarks.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/GeneralPunctuation.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/GreekAndCoptic.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedA.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedB.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/LetterlikeSymbols.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/Main.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/MathOperators.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/BasicLatin.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/CombDiacritMarks.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/GeometricShapes.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/GreekAndCoptic.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedA.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedB.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/LetterlikeSymbols.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/Main.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/MathOperators.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/MiscSymbols.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/SpacingModLetters.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/SuppMathOperators.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Math/BoldItalic/Main.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Math/Italic/Main.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Bold/BasicLatin.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Bold/Main.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Bold/Other.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Italic/BasicLatin.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Italic/Main.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Italic/Other.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Regular/BasicLatin.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Regular/Main.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Regular/Other.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Script/Regular/BasicLatin.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Script/Regular/Main.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Size1/Regular/Main.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Size2/Regular/Main.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Size3/Regular/Main.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Size4/Regular/Main.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Typewriter/Regular/BasicLatin.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Typewriter/Regular/Main.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/Typewriter/Regular/Other.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/fontdata-extra.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/fonts/TeX/fontdata.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/MathJax/jax/output/SVG/jax.js +19 -0
- crocoddyl-2.0.2/cmake/doxygen/doxyfile.awk +10 -0
- crocoddyl-2.0.2/cmake/doxygen/doxygen.css +660 -0
- crocoddyl-2.0.2/cmake/doxygen/footer.html +21 -0
- crocoddyl-2.0.2/cmake/doxygen/header-mathjax.html +20 -0
- crocoddyl-2.0.2/cmake/doxygen/header.html +21 -0
- crocoddyl-2.0.2/cmake/doxygen/header.tex +53 -0
- crocoddyl-2.0.2/cmake/doxygen/style.rtf +78 -0
- crocoddyl-2.0.2/cmake/doxygen/style.tex +96 -0
- crocoddyl-2.0.2/cmake/doxygen/tabs.css +59 -0
- crocoddyl-2.0.2/cmake/doxygen.cmake +734 -0
- crocoddyl-2.0.2/cmake/dynamic_graph/python-module-py.cc.in +32 -0
- crocoddyl-2.0.2/cmake/dynamic_graph/submodule/__init__.py.cmake +18 -0
- crocoddyl-2.0.2/cmake/eigen.cmake +58 -0
- crocoddyl-2.0.2/cmake/filefilter.txt +51 -0
- crocoddyl-2.0.2/cmake/find-external/CDD/FindCDD.cmake +53 -0
- crocoddyl-2.0.2/cmake/find-external/CLP/FindCLP.cmake +52 -0
- crocoddyl-2.0.2/cmake/find-external/CoinUtils/FindCoinUtils.cmake +59 -0
- crocoddyl-2.0.2/cmake/find-external/CppAD/Findcppad.cmake +38 -0
- crocoddyl-2.0.2/cmake/find-external/CppAD/Findcppadcg.cmake +32 -0
- crocoddyl-2.0.2/cmake/find-external/GMP/FindGMP.cmake +29 -0
- crocoddyl-2.0.2/cmake/find-external/Julia/FindJulia.cmake +183 -0
- crocoddyl-2.0.2/cmake/find-external/MPFR/FindMPFR.cmake +90 -0
- crocoddyl-2.0.2/cmake/find-external/OpenMP/FindOpenMP.cmake +772 -0
- crocoddyl-2.0.2/cmake/find-external/OpenRTM/FindOpenRTM.cmake +189 -0
- crocoddyl-2.0.2/cmake/find-external/Qhull/FindQhull.cmake +224 -0
- crocoddyl-2.0.2/cmake/find-external/Simde/FindSimde.cmake +39 -0
- crocoddyl-2.0.2/cmake/find-external/TinyXML/FindTinyXML.cmake +41 -0
- crocoddyl-2.0.2/cmake/find-external/assimp/Findassimp.cmake +99 -0
- crocoddyl-2.0.2/cmake/find-external/glpk/Findglpk.cmake +55 -0
- crocoddyl-2.0.2/cmake/find-external/qpOASES/FindqpOASES.cmake +59 -0
- crocoddyl-2.0.2/cmake/fix-license.sh +37 -0
- crocoddyl-2.0.2/cmake/geometric-tools.cmake +71 -0
- crocoddyl-2.0.2/cmake/git-archive-all.py +603 -0
- crocoddyl-2.0.2/cmake/git-archive-all.sh +255 -0
- crocoddyl-2.0.2/cmake/github/update-doxygen-doc.sh +356 -0
- crocoddyl-2.0.2/cmake/gitlog-to-changelog +433 -0
- crocoddyl-2.0.2/cmake/gtest/CMakeLists.txt.in +15 -0
- crocoddyl-2.0.2/cmake/gtest.cmake +68 -0
- crocoddyl-2.0.2/cmake/header.cmake +223 -0
- crocoddyl-2.0.2/cmake/hpp/doc/layout.xml +195 -0
- crocoddyl-2.0.2/cmake/hpp/doc.cmake +29 -0
- crocoddyl-2.0.2/cmake/hpp/idl/omniidl_be_python_with_docstring.py +144 -0
- crocoddyl-2.0.2/cmake/hpp.cmake +80 -0
- crocoddyl-2.0.2/cmake/ide.cmake +104 -0
- crocoddyl-2.0.2/cmake/idl.cmake +209 -0
- crocoddyl-2.0.2/cmake/idlrtc.cmake +74 -0
- crocoddyl-2.0.2/cmake/image/visp.cmake +51 -0
- crocoddyl-2.0.2/cmake/install-data.cmake +28 -0
- crocoddyl-2.0.2/cmake/julia.cmake +18 -0
- crocoddyl-2.0.2/cmake/kineo.cmake +85 -0
- crocoddyl-2.0.2/cmake/lapack.cmake +59 -0
- crocoddyl-2.0.2/cmake/logging.cmake +191 -0
- crocoddyl-2.0.2/cmake/man.cmake +56 -0
- crocoddyl-2.0.2/cmake/memorycheck_unit_test.cmake.in +32 -0
- crocoddyl-2.0.2/cmake/metapodfromurdf.cmake +35 -0
- crocoddyl-2.0.2/cmake/modernize-links.cmake +44 -0
- crocoddyl-2.0.2/cmake/msvc-specific.cmake +211 -0
- crocoddyl-2.0.2/cmake/msvc.vcxproj.user.in +10 -0
- crocoddyl-2.0.2/cmake/openhrp.cmake +65 -0
- crocoddyl-2.0.2/cmake/openhrpcontroller.cmake +57 -0
- crocoddyl-2.0.2/cmake/openrtm.cmake +48 -0
- crocoddyl-2.0.2/cmake/oscheck.cmake +44 -0
- crocoddyl-2.0.2/cmake/package-config.cmake +295 -0
- crocoddyl-2.0.2/cmake/pkg-config.cmake +1184 -0
- crocoddyl-2.0.2/cmake/pkg-config.pc.cmake +22 -0
- crocoddyl-2.0.2/cmake/portability.cmake +77 -0
- crocoddyl-2.0.2/cmake/post-project.cmake +68 -0
- crocoddyl-2.0.2/cmake/pthread.cmake +45 -0
- crocoddyl-2.0.2/cmake/pyproject.py +30 -0
- crocoddyl-2.0.2/cmake/python-helpers.cmake +115 -0
- crocoddyl-2.0.2/cmake/python.cmake +532 -0
- crocoddyl-2.0.2/cmake/qhull.cmake +130 -0
- crocoddyl-2.0.2/cmake/release.cmake +154 -0
- crocoddyl-2.0.2/cmake/relpath.cmake +49 -0
- crocoddyl-2.0.2/cmake/ros.cmake +167 -0
- crocoddyl-2.0.2/cmake/sdformat.cmake +48 -0
- crocoddyl-2.0.2/cmake/setup.cfg +4 -0
- crocoddyl-2.0.2/cmake/shared-library.cmake +45 -0
- crocoddyl-2.0.2/cmake/sphinx/conf.py.in +0 -0
- crocoddyl-2.0.2/cmake/sphinx/index.rst.in +0 -0
- crocoddyl-2.0.2/cmake/sphinx.cmake +133 -0
- crocoddyl-2.0.2/cmake/stubgen/CMakeLists.txt.in +15 -0
- crocoddyl-2.0.2/cmake/stubs.cmake +155 -0
- crocoddyl-2.0.2/cmake/swig.cmake +57 -0
- crocoddyl-2.0.2/cmake/test.cmake +244 -0
- crocoddyl-2.0.2/cmake/uninstall.cmake +78 -0
- crocoddyl-2.0.2/cmake/version-script-test.lds +2 -0
- crocoddyl-2.0.2/cmake/version-script.cmake +70 -0
- crocoddyl-2.0.2/cmake/version.cmake +269 -0
- crocoddyl-2.0.2/cmake/warning.hh.cmake +35 -0
- crocoddyl-2.0.2/cmake/xacro.cmake +100 -0
- crocoddyl-2.0.2/dependencies.rosinstall +4 -0
- crocoddyl-2.0.2/doc/Doxyfile.extra.in +2638 -0
- crocoddyl-2.0.2/doc/Overview.md +128 -0
- crocoddyl-2.0.2/doc/bib/budhiraja-ichr18.bib +6 -0
- crocoddyl-2.0.2/doc/bib/carpentier-rss18.bib +6 -0
- crocoddyl-2.0.2/doc/bib/mastalli-icra20.bib +6 -0
- crocoddyl-2.0.2/doc/bib/tassa-icra14.bib +7 -0
- crocoddyl-2.0.2/doc/customdoxygen.css +19 -0
- crocoddyl-2.0.2/doc/header.html +56 -0
- crocoddyl-2.0.2/doc/images/crocoddyl_logo.png +0 -0
- crocoddyl-2.0.2/doc/images/crocoddyl_logo.svg +296 -0
- crocoddyl-2.0.2/doc/images/crocoddyl_thumb.png +0 -0
- crocoddyl-2.0.2/doc/images/crocoddyl_thumb.svg +240 -0
- crocoddyl-2.0.2/doc/references.bib +33 -0
- crocoddyl-2.0.2/doc/reports/fddp/Makefile +126 -0
- crocoddyl-2.0.2/doc/reports/fddp/root.tex +549 -0
- crocoddyl-2.0.2/examples/CMakeLists.txt +79 -0
- crocoddyl-2.0.2/examples/__init__.py +0 -0
- crocoddyl-2.0.2/examples/arm_manipulation_fwddyn.py +124 -0
- crocoddyl-2.0.2/examples/arm_manipulation_invdyn.py +129 -0
- crocoddyl-2.0.2/examples/bipedal_walk_fwddyn.py +143 -0
- crocoddyl-2.0.2/examples/bipedal_walk_invdyn.py +143 -0
- crocoddyl-2.0.2/examples/bipedal_walk_ubound.py +146 -0
- crocoddyl-2.0.2/examples/boxfddp_vs_boxddp.py +145 -0
- crocoddyl-2.0.2/examples/double_pendulum_fwddyn.py +98 -0
- crocoddyl-2.0.2/examples/double_pendulum_invdyn.py +104 -0
- crocoddyl-2.0.2/examples/humanoid_manipulation.py +225 -0
- crocoddyl-2.0.2/examples/humanoid_manipulation_ubound.py +227 -0
- crocoddyl-2.0.2/examples/humanoid_taichi.py +275 -0
- crocoddyl-2.0.2/examples/log/arm_manipulation_fwddyn.log +82 -0
- crocoddyl-2.0.2/examples/log/arm_manipulation_invdyn.log +111 -0
- crocoddyl-2.0.2/examples/log/bipedal_walk_fwddyn.log +89 -0
- crocoddyl-2.0.2/examples/log/bipedal_walk_invdyn.log +91 -0
- crocoddyl-2.0.2/examples/log/bipedal_walk_ubound.log +94 -0
- crocoddyl-2.0.2/examples/log/boxfddp_vs_boxddp.log +90 -0
- crocoddyl-2.0.2/examples/log/check_logfiles.sh +24 -0
- crocoddyl-2.0.2/examples/log/double_pendulum_fwddyn.log +60 -0
- crocoddyl-2.0.2/examples/log/double_pendulum_invdyn.log +110 -0
- crocoddyl-2.0.2/examples/log/humanoid_manipulation.log +86 -0
- crocoddyl-2.0.2/examples/log/humanoid_manipulation_ubound.log +150 -0
- crocoddyl-2.0.2/examples/log/humanoid_taichi.log +118 -0
- crocoddyl-2.0.2/examples/log/quadrotor_fwddyn.log +28 -0
- crocoddyl-2.0.2/examples/log/quadrotor_invdyn.log +54 -0
- crocoddyl-2.0.2/examples/log/quadrotor_ubound.log +66 -0
- crocoddyl-2.0.2/examples/log/quadrupedal_gaits_fwddyn.log +80 -0
- crocoddyl-2.0.2/examples/log/quadrupedal_gaits_invdyn.log +66 -0
- crocoddyl-2.0.2/examples/log/quadrupedal_walk_ubound.log +15 -0
- crocoddyl-2.0.2/examples/log/update_logfiles.sh +48 -0
- crocoddyl-2.0.2/examples/notebooks/acrobot_urdf.ipynb +323 -0
- crocoddyl-2.0.2/examples/notebooks/arm_example.py +83 -0
- crocoddyl-2.0.2/examples/notebooks/arm_manipulation.ipynb +354 -0
- crocoddyl-2.0.2/examples/notebooks/bipedal_walking.ipynb +221 -0
- crocoddyl-2.0.2/examples/notebooks/cartpole_swing_up.ipynb +429 -0
- crocoddyl-2.0.2/examples/notebooks/cartpole_swing_up.py +91 -0
- crocoddyl-2.0.2/examples/notebooks/cartpole_swing_up_sol.ipynb +409 -0
- crocoddyl-2.0.2/examples/notebooks/cartpole_utils.py +42 -0
- crocoddyl-2.0.2/examples/notebooks/introduction_to_crocoddyl.ipynb +618 -0
- crocoddyl-2.0.2/examples/notebooks/p2p.py +111 -0
- crocoddyl-2.0.2/examples/notebooks/solutions/cartpole_analytical_derivatives.py +64 -0
- crocoddyl-2.0.2/examples/notebooks/solutions/cartpole_ddp.py +12 -0
- crocoddyl-2.0.2/examples/notebooks/solutions/cartpole_dyn.py +21 -0
- crocoddyl-2.0.2/examples/notebooks/solutions/cartpole_fxfu.py +6 -0
- crocoddyl-2.0.2/examples/notebooks/solutions/cartpole_integration.py +8 -0
- crocoddyl-2.0.2/examples/notebooks/solutions/cartpole_tuning.py +15 -0
- crocoddyl-2.0.2/examples/notebooks/unicycle_towards_origin.ipynb +248 -0
- crocoddyl-2.0.2/examples/notebooks/unicycle_towards_origin.py +37 -0
- crocoddyl-2.0.2/examples/notebooks/unicycle_utils.py +34 -0
- crocoddyl-2.0.2/examples/notebooks/whole_body_manipulation.ipynb +462 -0
- crocoddyl-2.0.2/examples/quadrotor_fwddyn.py +127 -0
- crocoddyl-2.0.2/examples/quadrotor_invdyn.py +132 -0
- crocoddyl-2.0.2/examples/quadrotor_ubound.py +129 -0
- crocoddyl-2.0.2/examples/quadrupedal_gaits_fwddyn.py +200 -0
- crocoddyl-2.0.2/examples/quadrupedal_gaits_invdyn.py +202 -0
- crocoddyl-2.0.2/examples/quadrupedal_walk_ubound.py +107 -0
- crocoddyl-2.0.2/include/crocoddyl/core/action-base.hpp +404 -0
- crocoddyl-2.0.2/include/crocoddyl/core/action-base.hxx +230 -0
- crocoddyl-2.0.2/include/crocoddyl/core/actions/diff-lqr.hpp +138 -0
- crocoddyl-2.0.2/include/crocoddyl/core/actions/diff-lqr.hxx +303 -0
- crocoddyl-2.0.2/include/crocoddyl/core/actions/lqr.hpp +135 -0
- crocoddyl-2.0.2/include/crocoddyl/core/actions/lqr.hxx +292 -0
- crocoddyl-2.0.2/include/crocoddyl/core/actions/unicycle.hpp +101 -0
- crocoddyl-2.0.2/include/crocoddyl/core/actions/unicycle.hxx +158 -0
- crocoddyl-2.0.2/include/crocoddyl/core/activation-base.hpp +105 -0
- crocoddyl-2.0.2/include/crocoddyl/core/activations/2norm-barrier.hpp +182 -0
- crocoddyl-2.0.2/include/crocoddyl/core/activations/quadratic-barrier.hpp +197 -0
- crocoddyl-2.0.2/include/crocoddyl/core/activations/quadratic-flat-exp.hpp +161 -0
- crocoddyl-2.0.2/include/crocoddyl/core/activations/quadratic-flat-log.hpp +159 -0
- crocoddyl-2.0.2/include/crocoddyl/core/activations/quadratic.hpp +83 -0
- crocoddyl-2.0.2/include/crocoddyl/core/activations/smooth-1norm.hpp +156 -0
- crocoddyl-2.0.2/include/crocoddyl/core/activations/smooth-2norm.hpp +127 -0
- crocoddyl-2.0.2/include/crocoddyl/core/activations/smooth-abs.hpp +48 -0
- crocoddyl-2.0.2/include/crocoddyl/core/activations/weighted-quadratic-barrier.hpp +114 -0
- crocoddyl-2.0.2/include/crocoddyl/core/activations/weighted-quadratic.hpp +135 -0
- crocoddyl-2.0.2/include/crocoddyl/core/actuation/actuation-squashing.hpp +121 -0
- crocoddyl-2.0.2/include/crocoddyl/core/actuation/squashing/smooth-sat.hpp +109 -0
- crocoddyl-2.0.2/include/crocoddyl/core/actuation/squashing-base.hpp +89 -0
- crocoddyl-2.0.2/include/crocoddyl/core/actuation-base.hpp +219 -0
- crocoddyl-2.0.2/include/crocoddyl/core/actuation-base.hxx +88 -0
- crocoddyl-2.0.2/include/crocoddyl/core/codegen/action-base.hpp +357 -0
- crocoddyl-2.0.2/include/crocoddyl/core/constraint-base.hpp +300 -0
- crocoddyl-2.0.2/include/crocoddyl/core/constraint-base.hxx +208 -0
- crocoddyl-2.0.2/include/crocoddyl/core/constraints/constraint-manager.hpp +442 -0
- crocoddyl-2.0.2/include/crocoddyl/core/constraints/constraint-manager.hxx +408 -0
- crocoddyl-2.0.2/include/crocoddyl/core/constraints/residual.hpp +191 -0
- crocoddyl-2.0.2/include/crocoddyl/core/constraints/residual.hxx +171 -0
- crocoddyl-2.0.2/include/crocoddyl/core/control-base.hpp +221 -0
- crocoddyl-2.0.2/include/crocoddyl/core/control-base.hxx +66 -0
- crocoddyl-2.0.2/include/crocoddyl/core/controls/poly-one.hpp +188 -0
- crocoddyl-2.0.2/include/crocoddyl/core/controls/poly-one.hxx +166 -0
- crocoddyl-2.0.2/include/crocoddyl/core/controls/poly-two-rk.hpp +204 -0
- crocoddyl-2.0.2/include/crocoddyl/core/controls/poly-two-rk.hxx +202 -0
- crocoddyl-2.0.2/include/crocoddyl/core/controls/poly-zero.hpp +162 -0
- crocoddyl-2.0.2/include/crocoddyl/core/controls/poly-zero.hxx +162 -0
- crocoddyl-2.0.2/include/crocoddyl/core/cost-base.hpp +344 -0
- crocoddyl-2.0.2/include/crocoddyl/core/cost-base.hxx +169 -0
- crocoddyl-2.0.2/include/crocoddyl/core/costs/cost-sum.hpp +425 -0
- crocoddyl-2.0.2/include/crocoddyl/core/costs/cost-sum.hxx +329 -0
- crocoddyl-2.0.2/include/crocoddyl/core/costs/residual.hpp +178 -0
- crocoddyl-2.0.2/include/crocoddyl/core/costs/residual.hxx +108 -0
- crocoddyl-2.0.2/include/crocoddyl/core/data/actuation.hpp +34 -0
- crocoddyl-2.0.2/include/crocoddyl/core/data/joint.hpp +102 -0
- crocoddyl-2.0.2/include/crocoddyl/core/data-collector-base.hpp +28 -0
- crocoddyl-2.0.2/include/crocoddyl/core/diff-action-base.hpp +446 -0
- crocoddyl-2.0.2/include/crocoddyl/core/diff-action-base.hxx +231 -0
- crocoddyl-2.0.2/include/crocoddyl/core/fwd.hpp +437 -0
- crocoddyl-2.0.2/include/crocoddyl/core/integ-action-base.hpp +200 -0
- crocoddyl-2.0.2/include/crocoddyl/core/integ-action-base.hxx +153 -0
- crocoddyl-2.0.2/include/crocoddyl/core/integrator/euler.hpp +242 -0
- crocoddyl-2.0.2/include/crocoddyl/core/integrator/euler.hxx +209 -0
- crocoddyl-2.0.2/include/crocoddyl/core/integrator/rk.hpp +356 -0
- crocoddyl-2.0.2/include/crocoddyl/core/integrator/rk.hxx +425 -0
- crocoddyl-2.0.2/include/crocoddyl/core/integrator/rk4.hpp +336 -0
- crocoddyl-2.0.2/include/crocoddyl/core/integrator/rk4.hxx +365 -0
- crocoddyl-2.0.2/include/crocoddyl/core/mathbase.hpp +49 -0
- crocoddyl-2.0.2/include/crocoddyl/core/numdiff/action.hpp +259 -0
- crocoddyl-2.0.2/include/crocoddyl/core/numdiff/action.hxx +375 -0
- crocoddyl-2.0.2/include/crocoddyl/core/numdiff/activation.hpp +154 -0
- crocoddyl-2.0.2/include/crocoddyl/core/numdiff/activation.hxx +95 -0
- crocoddyl-2.0.2/include/crocoddyl/core/numdiff/actuation.hpp +187 -0
- crocoddyl-2.0.2/include/crocoddyl/core/numdiff/actuation.hxx +173 -0
- crocoddyl-2.0.2/include/crocoddyl/core/numdiff/constraint.hpp +210 -0
- crocoddyl-2.0.2/include/crocoddyl/core/numdiff/constraint.hxx +209 -0
- crocoddyl-2.0.2/include/crocoddyl/core/numdiff/control.hpp +201 -0
- crocoddyl-2.0.2/include/crocoddyl/core/numdiff/control.hxx +144 -0
- crocoddyl-2.0.2/include/crocoddyl/core/numdiff/cost.hpp +239 -0
- crocoddyl-2.0.2/include/crocoddyl/core/numdiff/cost.hxx +197 -0
- crocoddyl-2.0.2/include/crocoddyl/core/numdiff/diff-action.hpp +257 -0
- crocoddyl-2.0.2/include/crocoddyl/core/numdiff/diff-action.hxx +370 -0
- crocoddyl-2.0.2/include/crocoddyl/core/numdiff/residual.hpp +218 -0
- crocoddyl-2.0.2/include/crocoddyl/core/numdiff/residual.hxx +150 -0
- crocoddyl-2.0.2/include/crocoddyl/core/numdiff/state.hpp +125 -0
- crocoddyl-2.0.2/include/crocoddyl/core/numdiff/state.hxx +229 -0
- crocoddyl-2.0.2/include/crocoddyl/core/optctrl/shooting.hpp +316 -0
- crocoddyl-2.0.2/include/crocoddyl/core/optctrl/shooting.hxx +578 -0
- crocoddyl-2.0.2/include/crocoddyl/core/residual-base.hpp +279 -0
- crocoddyl-2.0.2/include/crocoddyl/core/residual-base.hxx +163 -0
- crocoddyl-2.0.2/include/crocoddyl/core/residuals/control.hpp +167 -0
- crocoddyl-2.0.2/include/crocoddyl/core/residuals/control.hxx +125 -0
- crocoddyl-2.0.2/include/crocoddyl/core/residuals/joint-acceleration.hpp +199 -0
- crocoddyl-2.0.2/include/crocoddyl/core/residuals/joint-acceleration.hxx +111 -0
- crocoddyl-2.0.2/include/crocoddyl/core/residuals/joint-effort.hpp +221 -0
- crocoddyl-2.0.2/include/crocoddyl/core/residuals/joint-effort.hxx +138 -0
- crocoddyl-2.0.2/include/crocoddyl/core/solver-base.hpp +506 -0
- crocoddyl-2.0.2/include/crocoddyl/core/solvers/box-ddp.hpp +43 -0
- crocoddyl-2.0.2/include/crocoddyl/core/solvers/box-fddp.hpp +43 -0
- crocoddyl-2.0.2/include/crocoddyl/core/solvers/box-kkt.hpp +14 -0
- crocoddyl-2.0.2/include/crocoddyl/core/solvers/box-qp.hpp +217 -0
- crocoddyl-2.0.2/include/crocoddyl/core/solvers/ddp.hpp +407 -0
- crocoddyl-2.0.2/include/crocoddyl/core/solvers/fddp.hpp +118 -0
- crocoddyl-2.0.2/include/crocoddyl/core/solvers/intro.hpp +212 -0
- crocoddyl-2.0.2/include/crocoddyl/core/solvers/ipopt/ipopt-iface.hpp +571 -0
- crocoddyl-2.0.2/include/crocoddyl/core/solvers/ipopt.hpp +78 -0
- crocoddyl-2.0.2/include/crocoddyl/core/solvers/kkt.hpp +86 -0
- crocoddyl-2.0.2/include/crocoddyl/core/state-base.hpp +334 -0
- crocoddyl-2.0.2/include/crocoddyl/core/state-base.hxx +175 -0
- crocoddyl-2.0.2/include/crocoddyl/core/states/euclidean.hpp +69 -0
- crocoddyl-2.0.2/include/crocoddyl/core/states/euclidean.hxx +179 -0
- crocoddyl-2.0.2/include/crocoddyl/core/utils/callbacks.hpp +57 -0
- crocoddyl-2.0.2/include/crocoddyl/core/utils/deprecate.hpp +64 -0
- crocoddyl-2.0.2/include/crocoddyl/core/utils/exception.hpp +58 -0
- crocoddyl-2.0.2/include/crocoddyl/core/utils/file-io.hpp +91 -0
- crocoddyl-2.0.2/include/crocoddyl/core/utils/math.hpp +62 -0
- crocoddyl-2.0.2/include/crocoddyl/core/utils/motion-display.hpp +0 -0
- crocoddyl-2.0.2/include/crocoddyl/core/utils/robot-loader.hpp +0 -0
- crocoddyl-2.0.2/include/crocoddyl/core/utils/solution-plot.hpp +0 -0
- crocoddyl-2.0.2/include/crocoddyl/core/utils/stop-watch.hpp +265 -0
- crocoddyl-2.0.2/include/crocoddyl/core/utils/timer.hpp +43 -0
- crocoddyl-2.0.2/include/crocoddyl/core/utils/version.hpp +54 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/actions/contact-fwddyn.hpp +392 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/actions/contact-fwddyn.hxx +450 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/actions/contact-invdyn.hpp +695 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/actions/contact-invdyn.hxx +438 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/actions/free-fwddyn.hpp +285 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/actions/free-fwddyn.hxx +334 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/actions/free-invdyn.hpp +470 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/actions/free-invdyn.hxx +293 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/actions/impulse-fwddyn.hpp +365 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/actions/impulse-fwddyn.hxx +394 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/actuations/floating-base.hpp +171 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/actuations/full.hpp +136 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/actuations/multicopter-base.hpp +189 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/contact-base.hpp +224 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/contact-base.hxx +145 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/contacts/contact-1d.hpp +275 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/contacts/contact-1d.hxx +251 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/contacts/contact-2d.hpp +213 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/contacts/contact-2d.hxx +176 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/contacts/contact-3d.hpp +260 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/contacts/contact-3d.hxx +232 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/contacts/contact-6d.hpp +251 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/contacts/contact-6d.hxx +221 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/contacts/multiple-contacts.hpp +367 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/contacts/multiple-contacts.hxx +507 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/cop-support.hpp +141 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/cop-support.hxx +150 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/cost-base.hpp +17 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/data/contacts.hpp +79 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/data/impulses.hpp +47 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/data/multibody.hpp +61 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/force-base.hpp +64 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/friction-cone.hpp +211 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/friction-cone.hxx +339 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/fwd.hpp +382 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/impulse-base.hpp +146 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/impulse-base.hxx +119 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/impulses/impulse-3d.hpp +162 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/impulses/impulse-3d.hxx +125 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/impulses/impulse-6d.hpp +169 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/impulses/impulse-6d.hxx +125 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/impulses/multiple-impulses.hpp +326 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/impulses/multiple-impulses.hxx +366 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/numdiff/contact.hpp +176 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/numdiff/contact.hxx +117 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/numdiff/cost.hpp +17 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/residuals/centroidal-momentum.hpp +181 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/residuals/centroidal-momentum.hxx +84 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/residuals/com-position.hpp +164 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/residuals/com-position.hxx +75 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/residuals/contact-control-gravity.hpp +199 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/residuals/contact-control-gravity.hxx +105 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/residuals/contact-cop-position.hpp +361 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/residuals/contact-cop-position.hxx +138 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/residuals/contact-force.hpp +362 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/residuals/contact-force.hxx +185 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/residuals/contact-friction-cone.hpp +346 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/residuals/contact-friction-cone.hxx +171 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/residuals/contact-wrench-cone.hpp +346 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/residuals/contact-wrench-cone.hxx +152 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/residuals/control-gravity.hpp +173 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/residuals/control-gravity.hxx +104 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/residuals/frame-placement.hpp +200 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/residuals/frame-placement.hxx +121 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/residuals/frame-rotation.hpp +200 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/residuals/frame-rotation.hxx +122 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/residuals/frame-translation.hpp +194 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/residuals/frame-translation.hxx +114 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/residuals/frame-velocity.hpp +208 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/residuals/frame-velocity.hxx +131 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/residuals/impulse-com.hpp +161 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/residuals/impulse-com.hxx +78 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/residuals/pair-collision.hpp +184 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/residuals/pair-collision.hxx +104 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/residuals/state.hpp +176 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/residuals/state.hxx +159 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/states/multibody.hpp +118 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/states/multibody.hxx +293 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/utils/quadruped-gaits.hpp +98 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/wrench-cone.hpp +229 -0
- crocoddyl-2.0.2/include/crocoddyl/multibody/wrench-cone.hxx +368 -0
- crocoddyl-2.0.2/package.xml +39 -0
- crocoddyl-2.0.2/pyproject.toml +33 -0
- crocoddyl-2.0.2/src/core/solver-base.cpp +469 -0
- crocoddyl-2.0.2/src/core/solvers/box-ddp.cpp +180 -0
- crocoddyl-2.0.2/src/core/solvers/box-fddp.cpp +205 -0
- crocoddyl-2.0.2/src/core/solvers/box-qp.cpp +267 -0
- crocoddyl-2.0.2/src/core/solvers/ddp.cpp +621 -0
- crocoddyl-2.0.2/src/core/solvers/fddp.cpp +281 -0
- crocoddyl-2.0.2/src/core/solvers/intro.cpp +462 -0
- crocoddyl-2.0.2/src/core/solvers/ipopt/ipopt-iface.cpp +793 -0
- crocoddyl-2.0.2/src/core/solvers/ipopt.cpp +84 -0
- crocoddyl-2.0.2/src/core/solvers/kkt.cpp +326 -0
- crocoddyl-2.0.2/src/core/utils/callbacks.cpp +241 -0
- crocoddyl-2.0.2/src/core/utils/exception.cpp +33 -0
- crocoddyl-2.0.2/src/core/utils/stop-watch.cpp +332 -0
- crocoddyl-2.0.2/src/multibody/utils/quadruped-gaits.cpp +424 -0
- crocoddyl-2.0.2/unittest/CMakeLists.txt +90 -0
- crocoddyl-2.0.2/unittest/bindings/CMakeLists.txt +22 -0
- crocoddyl-2.0.2/unittest/bindings/factory.py +2055 -0
- crocoddyl-2.0.2/unittest/bindings/test_actions.py +360 -0
- crocoddyl-2.0.2/unittest/bindings/test_actuations.py +84 -0
- crocoddyl-2.0.2/unittest/bindings/test_contacts.py +394 -0
- crocoddyl-2.0.2/unittest/bindings/test_copy.py +402 -0
- crocoddyl-2.0.2/unittest/bindings/test_costs.py +396 -0
- crocoddyl-2.0.2/unittest/bindings/test_impulses.py +273 -0
- crocoddyl-2.0.2/unittest/bindings/test_shooting.py +136 -0
- crocoddyl-2.0.2/unittest/bindings/test_solvers.py +212 -0
- crocoddyl-2.0.2/unittest/bindings/test_squashing.py +61 -0
- crocoddyl-2.0.2/unittest/bindings/test_states.py +165 -0
- crocoddyl-2.0.2/unittest/bindings/test_utils.py +25 -0
- crocoddyl-2.0.2/unittest/factory/action.cpp +264 -0
- crocoddyl-2.0.2/unittest/factory/action.hpp +61 -0
- crocoddyl-2.0.2/unittest/factory/activation.cpp +128 -0
- crocoddyl-2.0.2/unittest/factory/activation.hpp +58 -0
- crocoddyl-2.0.2/unittest/factory/actuation.cpp +121 -0
- crocoddyl-2.0.2/unittest/factory/actuation.hpp +70 -0
- crocoddyl-2.0.2/unittest/factory/constraint.cpp +233 -0
- crocoddyl-2.0.2/unittest/factory/constraint.hpp +71 -0
- crocoddyl-2.0.2/unittest/factory/contact.cpp +185 -0
- crocoddyl-2.0.2/unittest/factory/contact.hpp +69 -0
- crocoddyl-2.0.2/unittest/factory/contact_constraint.cpp +231 -0
- crocoddyl-2.0.2/unittest/factory/contact_constraint.hpp +62 -0
- crocoddyl-2.0.2/unittest/factory/contact_cost.cpp +149 -0
- crocoddyl-2.0.2/unittest/factory/contact_cost.hpp +62 -0
- crocoddyl-2.0.2/unittest/factory/control.cpp +80 -0
- crocoddyl-2.0.2/unittest/factory/control.hpp +50 -0
- crocoddyl-2.0.2/unittest/factory/cost.cpp +276 -0
- crocoddyl-2.0.2/unittest/factory/cost.hpp +113 -0
- crocoddyl-2.0.2/unittest/factory/diff_action.cpp +870 -0
- crocoddyl-2.0.2/unittest/factory/diff_action.hpp +105 -0
- crocoddyl-2.0.2/unittest/factory/impulse.cpp +121 -0
- crocoddyl-2.0.2/unittest/factory/impulse.hpp +61 -0
- crocoddyl-2.0.2/unittest/factory/impulse_constraint.cpp +210 -0
- crocoddyl-2.0.2/unittest/factory/impulse_constraint.hpp +61 -0
- crocoddyl-2.0.2/unittest/factory/impulse_cost.cpp +145 -0
- crocoddyl-2.0.2/unittest/factory/impulse_cost.hpp +61 -0
- crocoddyl-2.0.2/unittest/factory/integrator.cpp +106 -0
- crocoddyl-2.0.2/unittest/factory/integrator.hpp +61 -0
- crocoddyl-2.0.2/unittest/factory/pinocchio_model.cpp +201 -0
- crocoddyl-2.0.2/unittest/factory/pinocchio_model.hpp +92 -0
- crocoddyl-2.0.2/unittest/factory/residual.cpp +176 -0
- crocoddyl-2.0.2/unittest/factory/residual.hpp +70 -0
- crocoddyl-2.0.2/unittest/factory/solver.cpp +112 -0
- crocoddyl-2.0.2/unittest/factory/solver.hpp +63 -0
- crocoddyl-2.0.2/unittest/factory/state.cpp +101 -0
- crocoddyl-2.0.2/unittest/factory/state.hpp +58 -0
- crocoddyl-2.0.2/unittest/random_generator.hpp +39 -0
- crocoddyl-2.0.2/unittest/test_actions.cpp +340 -0
- crocoddyl-2.0.2/unittest/test_activations.cpp +116 -0
- crocoddyl-2.0.2/unittest/test_actuation.cpp +242 -0
- crocoddyl-2.0.2/unittest/test_boxqp.cpp +166 -0
- crocoddyl-2.0.2/unittest/test_codegen.cpp +498 -0
- crocoddyl-2.0.2/unittest/test_constraint_manager.cpp +419 -0
- crocoddyl-2.0.2/unittest/test_constraints.cpp +278 -0
- crocoddyl-2.0.2/unittest/test_contact_constraints.cpp +115 -0
- crocoddyl-2.0.2/unittest/test_contact_costs.cpp +118 -0
- crocoddyl-2.0.2/unittest/test_contacts.cpp +265 -0
- crocoddyl-2.0.2/unittest/test_controls.cpp +143 -0
- crocoddyl-2.0.2/unittest/test_cop_support.cpp +164 -0
- crocoddyl-2.0.2/unittest/test_cost_sum.cpp +465 -0
- crocoddyl-2.0.2/unittest/test_costs.cpp +294 -0
- crocoddyl-2.0.2/unittest/test_costs_collision.cpp +269 -0
- crocoddyl-2.0.2/unittest/test_costs_noFF.cpp +323 -0
- crocoddyl-2.0.2/unittest/test_diff_actions.cpp +217 -0
- crocoddyl-2.0.2/unittest/test_friction_cone.cpp +244 -0
- crocoddyl-2.0.2/unittest/test_impulse_constraints.cpp +95 -0
- crocoddyl-2.0.2/unittest/test_impulse_costs.cpp +113 -0
- crocoddyl-2.0.2/unittest/test_impulses.cpp +208 -0
- crocoddyl-2.0.2/unittest/test_multiple_contacts.cpp +709 -0
- crocoddyl-2.0.2/unittest/test_multiple_impulses.cpp +691 -0
- crocoddyl-2.0.2/unittest/test_problem.cpp +485 -0
- crocoddyl-2.0.2/unittest/test_residuals.cpp +326 -0
- crocoddyl-2.0.2/unittest/test_solvers.cpp +199 -0
- crocoddyl-2.0.2/unittest/test_states.cpp +406 -0
- crocoddyl-2.0.2/unittest/test_wrench_cone.cpp +275 -0
- crocoddyl-2.0.2/unittest/testutils.py +65 -0
- crocoddyl-2.0.2/unittest/unittest_common.hpp +142 -0
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
macos_arm64_task:
|
|
2
|
+
name: Build macOS arm64 wheels.
|
|
3
|
+
only_if: $CIRRUS_TAG =~ 'v.*' && $CIRRUS_REPO_OWNER == 'cmake-wheel'
|
|
4
|
+
environment:
|
|
5
|
+
TWINE_PASSWORD: ENCRYPTED[!56b7088276b3c2a2b559aa7f3a18b903286219a52149c978e3ae8d96edb5433ed6863e6eba1f37632afe3a9519689345!]
|
|
6
|
+
macos_instance:
|
|
7
|
+
image: ghcr.io/cirruslabs/macos-monterey-xcode
|
|
8
|
+
env:
|
|
9
|
+
CIRRUS_CLONE_SUBMODULES: true
|
|
10
|
+
CIBW_ENVIRONMENT: "CMEEL_RUN_TESTS=OFF CMEEL_LOG_LEVEL=DEBUG"
|
|
11
|
+
CIBW_REPAIR_WHEEL_COMMAND: ""
|
|
12
|
+
CIBW_BUILD: "cp3*" # ignore pypy, as numpy wheel are not available
|
|
13
|
+
CIBW_SKIP: "cp38-*"
|
|
14
|
+
PATH: /opt/homebrew/opt/python@3.10/bin:$PATH
|
|
15
|
+
install_pre_requirements_script:
|
|
16
|
+
- brew install python@3.10
|
|
17
|
+
- ln -s python3 /opt/homebrew/opt/python@3.10/bin/python
|
|
18
|
+
install_cibuildwheel_script:
|
|
19
|
+
- python -m pip install -U pip
|
|
20
|
+
- python -m pip install cibuildwheel twine
|
|
21
|
+
run_cibuildwheel_script:
|
|
22
|
+
- cibuildwheel
|
|
23
|
+
publish_script:
|
|
24
|
+
- python -m twine upload -u __token__ wheelhouse/crocoddyl*.whl
|
|
25
|
+
wheels_artifacts:
|
|
26
|
+
path: "wheelhouse/*"
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: "\U0001F41E Bug report"
|
|
3
|
+
about: Create a report to help us improve
|
|
4
|
+
title: ''
|
|
5
|
+
labels: bug
|
|
6
|
+
assignees: ''
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## Bug description
|
|
11
|
+
|
|
12
|
+
A clear and concise description of what the bug is.
|
|
13
|
+
|
|
14
|
+
## Expected behavior
|
|
15
|
+
|
|
16
|
+
A clear and concise description of what you expected to happen.
|
|
17
|
+
|
|
18
|
+
## Reproduction steps
|
|
19
|
+
|
|
20
|
+
Steps to reproduce the behavior:
|
|
21
|
+
1. Load to '...'
|
|
22
|
+
2. Click on '....'
|
|
23
|
+
3. Scroll down to '....'
|
|
24
|
+
4. See error
|
|
25
|
+
|
|
26
|
+
### Docker image
|
|
27
|
+
|
|
28
|
+
If this is an installation issue, a Docker image to reproduce it
|
|
29
|
+
|
|
30
|
+
```dockerfile
|
|
31
|
+
...
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
### Code
|
|
35
|
+
|
|
36
|
+
If this is a runtime issue, provide some minimal code to reproduce it:
|
|
37
|
+
|
|
38
|
+
```
|
|
39
|
+
...
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
## Additional context
|
|
43
|
+
|
|
44
|
+
Add any other context about the problem here.
|
|
45
|
+
|
|
46
|
+
### Screenshots
|
|
47
|
+
|
|
48
|
+
If applicable, add screenshots to help explain your problem.
|
|
49
|
+
|
|
50
|
+
### System
|
|
51
|
+
|
|
52
|
+
- OS: [e.g. Ubuntu]
|
|
53
|
+
- Crocoddyl version: [e.g. 2.0.0]
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: 💡 Feature request
|
|
3
|
+
about: Suggest an idea for this project
|
|
4
|
+
title: ''
|
|
5
|
+
labels: feature proposal
|
|
6
|
+
assignees: ''
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
**Is your feature request related to a problem? Please describe.**
|
|
11
|
+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
|
12
|
+
|
|
13
|
+
**Describe the solution you'd like**
|
|
14
|
+
A clear and concise description of what you want to happen.
|
|
15
|
+
|
|
16
|
+
**Describe alternatives you've considered**
|
|
17
|
+
A clear and concise description of any alternative solutions or features you've considered.
|
|
18
|
+
|
|
19
|
+
**Additional context**
|
|
20
|
+
Add any other context or screenshots about the feature request here.
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
name: CONDA
|
|
2
|
+
|
|
3
|
+
on: [push, pull_request]
|
|
4
|
+
|
|
5
|
+
jobs:
|
|
6
|
+
crocoddyl-conda:
|
|
7
|
+
name: (${{ matrix.os }}, clang, multi-threading, ipopt, ${{ matrix.build_type }})
|
|
8
|
+
runs-on: ${{ matrix.os }}
|
|
9
|
+
env:
|
|
10
|
+
CCACHE_DIR: ${{ matrix.CCACHE_DIR }}
|
|
11
|
+
|
|
12
|
+
strategy:
|
|
13
|
+
fail-fast: false
|
|
14
|
+
matrix:
|
|
15
|
+
# os: ["ubuntu-latest", "macos-latest"]
|
|
16
|
+
os: ["macos-latest"]
|
|
17
|
+
build_type: [Release, Debug]
|
|
18
|
+
compiler: [clang]
|
|
19
|
+
|
|
20
|
+
include:
|
|
21
|
+
# - os: ubuntu-latest
|
|
22
|
+
# CCACHE_DIR: /home/runner/.ccache
|
|
23
|
+
- os: macos-latest
|
|
24
|
+
CCACHE_DIR: /Users/runner/.ccache
|
|
25
|
+
|
|
26
|
+
steps:
|
|
27
|
+
- uses: actions/checkout@v3
|
|
28
|
+
with:
|
|
29
|
+
submodules: recursive
|
|
30
|
+
|
|
31
|
+
- uses: actions/cache@v3
|
|
32
|
+
with:
|
|
33
|
+
path: ${{ env.CCACHE_DIR }}
|
|
34
|
+
key: ccache-conda-${{ matrix.os }}-${{ matrix.build_type }}
|
|
35
|
+
|
|
36
|
+
- uses: conda-incubator/setup-miniconda@v2
|
|
37
|
+
with:
|
|
38
|
+
activate-environment: crocoddyl
|
|
39
|
+
auto-update-conda: true
|
|
40
|
+
environment-file: .github/workflows/conda/conda-env.yml
|
|
41
|
+
|
|
42
|
+
- name: Install conda dependencies
|
|
43
|
+
shell: bash -l {0}
|
|
44
|
+
run: |
|
|
45
|
+
conda activate crocoddyl
|
|
46
|
+
conda install cmake ccache -c conda-forge
|
|
47
|
+
conda install llvm-openmp libcxx -c conda-forge
|
|
48
|
+
conda list
|
|
49
|
+
|
|
50
|
+
- name: Install example-robot-data
|
|
51
|
+
shell: bash -l {0}
|
|
52
|
+
run: |
|
|
53
|
+
conda activate crocoddyl
|
|
54
|
+
mkdir third-party && cd third-party
|
|
55
|
+
git clone --recursive https://github.com/Gepetto/example-robot-data.git
|
|
56
|
+
cd example-robot-data && mkdir build && cd build
|
|
57
|
+
cmake .. -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX
|
|
58
|
+
make install
|
|
59
|
+
|
|
60
|
+
- name: Install compilers for macOS
|
|
61
|
+
shell: bash -l {0}
|
|
62
|
+
if: contains(matrix.os, 'macos-latest')
|
|
63
|
+
run: |
|
|
64
|
+
conda install compilers -c conda-forge
|
|
65
|
+
|
|
66
|
+
- name: Enable CppADCodeGen compilation
|
|
67
|
+
shell: bash -l {0}
|
|
68
|
+
if: contains(matrix.build_type, 'Release')
|
|
69
|
+
run: |
|
|
70
|
+
echo "codegen_support=ON" >> "$GITHUB_ENV"
|
|
71
|
+
|
|
72
|
+
- name: Disable CppADCodeGen compilation
|
|
73
|
+
shell: bash -l {0}
|
|
74
|
+
if: contains(matrix.build_type, 'Debug')
|
|
75
|
+
run: |
|
|
76
|
+
echo "codegen_support=OFF" >> "$GITHUB_ENV"
|
|
77
|
+
|
|
78
|
+
- name: Build Crocoddyl
|
|
79
|
+
shell: bash -l {0}
|
|
80
|
+
run: |
|
|
81
|
+
conda activate crocoddyl
|
|
82
|
+
echo $CONDA_PREFIX
|
|
83
|
+
|
|
84
|
+
mkdir build
|
|
85
|
+
cd build
|
|
86
|
+
|
|
87
|
+
cmake .. \
|
|
88
|
+
-DCMAKE_CXX_COMPILER=/usr/bin/clang++ -DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
|
|
89
|
+
-DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \
|
|
90
|
+
-DBUILD_WITH_CODEGEN_SUPPORT=${{ env.codegen_support }} -DPYTHON_EXECUTABLE=$(which python3) \
|
|
91
|
+
-DBUILD_WITH_MULTITHREADS=ON -DINSTALL_DOCUMENTATION=ON -DOpenMP_ROOT=$CONDA_PREFIX
|
|
92
|
+
make
|
|
93
|
+
|
|
94
|
+
- name: Run unit tests
|
|
95
|
+
shell: bash -l {0}
|
|
96
|
+
run: |
|
|
97
|
+
conda activate crocoddyl
|
|
98
|
+
cd build
|
|
99
|
+
export CTEST_OUTPUT_ON_FAILURE=1
|
|
100
|
+
make test
|
|
101
|
+
|
|
102
|
+
- name: Install Crocoddyl
|
|
103
|
+
shell: bash -l {0}
|
|
104
|
+
run: |
|
|
105
|
+
cd build
|
|
106
|
+
make install
|
|
107
|
+
|
|
108
|
+
- name: Uninstall Crocoddyl
|
|
109
|
+
shell: bash -l {0}
|
|
110
|
+
run: |
|
|
111
|
+
cd build
|
|
112
|
+
make uninstall
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
name: Build crocoddyl for Mac OS X/Linux via pip
|
|
2
|
+
|
|
3
|
+
on: [push, pull_request]
|
|
4
|
+
|
|
5
|
+
env:
|
|
6
|
+
CTEST_OUTPUT_ON_FAILURE: 1
|
|
7
|
+
CTEST_PARALLEL_LEVEL: 4
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
crocoddyl-pip:
|
|
11
|
+
name: "CI on ${{ matrix.os }} / python ${{ matrix.python-version }} with pip"
|
|
12
|
+
runs-on: "${{ matrix.os }}"
|
|
13
|
+
|
|
14
|
+
strategy:
|
|
15
|
+
fail-fast: false
|
|
16
|
+
matrix:
|
|
17
|
+
os: ["ubuntu-latest", "macos-latest"]
|
|
18
|
+
python-version: ["3.8", "3.9", "3.10", "3.11"]
|
|
19
|
+
steps:
|
|
20
|
+
- uses: actions/checkout@v3
|
|
21
|
+
with:
|
|
22
|
+
submodules: 'true'
|
|
23
|
+
- uses: actions/setup-python@v4
|
|
24
|
+
with:
|
|
25
|
+
python-version: ${{ matrix.python-version }}
|
|
26
|
+
- run: python -m pip install -U pip
|
|
27
|
+
- run: python -m pip install example-robot-data[build] scipy
|
|
28
|
+
- run: echo "CMAKE_PREFIX_PATH=$(python -m cmeel cmake)" >> $GITHUB_ENV
|
|
29
|
+
- run: echo "LD_LIBRARY_PATH=$(python -m cmeel lib)" >> $GITHUB_ENV
|
|
30
|
+
- run: cmake -B build -S .
|
|
31
|
+
- run: cmake --build build
|
|
32
|
+
- run: cmake --build build -t test
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
name: Release on PyPI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
tags:
|
|
6
|
+
- "v*"
|
|
7
|
+
branches:
|
|
8
|
+
- cmeel
|
|
9
|
+
pull_request_target:
|
|
10
|
+
branches:
|
|
11
|
+
- cmeel
|
|
12
|
+
|
|
13
|
+
env:
|
|
14
|
+
CMEEL_LOG_LEVEL: DEBUG
|
|
15
|
+
|
|
16
|
+
jobs:
|
|
17
|
+
wheel:
|
|
18
|
+
name: "${{ matrix.build }} ${{ matrix.os }} ${{ matrix.arch }}"
|
|
19
|
+
runs-on: "${{ matrix.os }}"
|
|
20
|
+
strategy:
|
|
21
|
+
matrix:
|
|
22
|
+
os: ["ubuntu-latest", "macos-latest"]
|
|
23
|
+
arch: ["x86_64", "aarch64"]
|
|
24
|
+
build: ["cp38-*", "cp39-*", "cp310-*", "cp311-*", "cp312-*"]
|
|
25
|
+
exclude:
|
|
26
|
+
- os: "macos-latest"
|
|
27
|
+
arch: "aarch64"
|
|
28
|
+
steps:
|
|
29
|
+
- uses: actions/checkout@v4
|
|
30
|
+
with:
|
|
31
|
+
submodules: 'true'
|
|
32
|
+
- name: Set up QEMU
|
|
33
|
+
if: matrix.arch == 'aarch64'
|
|
34
|
+
uses: docker/setup-qemu-action@v3
|
|
35
|
+
with:
|
|
36
|
+
platforms: all
|
|
37
|
+
- run: pipx install cibuildwheel
|
|
38
|
+
- run: cibuildwheel --output-dir wh
|
|
39
|
+
env:
|
|
40
|
+
CIBW_BUILD: ${{ matrix.build }}
|
|
41
|
+
CIBW_ARCHS: ${{ matrix.arch }}
|
|
42
|
+
CIBW_SKIP: "*musllinux*"
|
|
43
|
+
CIBW_MANYLINUX_X86_64_IMAGE: "quay.io/pypa/manylinux_2_28_x86_64"
|
|
44
|
+
CIBW_MANYLINUX_AARCH64_IMAGE: "quay.io/pypa/manylinux_2_28_aarch64"
|
|
45
|
+
CIBW_REPAIR_WHEEL_COMMAND: ""
|
|
46
|
+
CIBW_ENVIRONMENT: CMEEL_LOG_LEVEL="DEBUG" CMEEL_JOBS="1" CMEEL_TEST_JOBS="1" CMEEL_RUN_TESTS="false"
|
|
47
|
+
- uses: actions/upload-artifact@v3
|
|
48
|
+
with:
|
|
49
|
+
path: wh
|
|
50
|
+
|
|
51
|
+
sdist:
|
|
52
|
+
runs-on: ubuntu-latest
|
|
53
|
+
steps:
|
|
54
|
+
- uses: actions/checkout@v4
|
|
55
|
+
with:
|
|
56
|
+
submodules: 'true'
|
|
57
|
+
- uses: actions/setup-python@v4
|
|
58
|
+
with:
|
|
59
|
+
python-version: 3.11
|
|
60
|
+
- name: setup
|
|
61
|
+
run: |
|
|
62
|
+
python -m pip install -U pip
|
|
63
|
+
python -m pip install build cmeel[build] example-robot-data[build] scipy
|
|
64
|
+
- name: build sdist
|
|
65
|
+
run: python -m build -nso dist .
|
|
66
|
+
- uses: actions/upload-artifact@v3
|
|
67
|
+
with:
|
|
68
|
+
path: dist
|
|
69
|
+
|
|
70
|
+
release:
|
|
71
|
+
needs: ["wheel", "sdist"]
|
|
72
|
+
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
|
|
73
|
+
runs-on: ubuntu-latest
|
|
74
|
+
steps:
|
|
75
|
+
- uses: actions/checkout@v4
|
|
76
|
+
with:
|
|
77
|
+
ref: ${{ github.ref_name }}
|
|
78
|
+
- run: curl https://github.com/nim65s.gpg | gpg --import
|
|
79
|
+
- name: validate signature
|
|
80
|
+
run: >
|
|
81
|
+
git verify-tag --raw ${{ github.ref_name }} 2>&1
|
|
82
|
+
| grep -q 'VALIDSIG 9B1A79065D2F2B806C8A5A1C7D2ACDAF4653CF28'
|
|
83
|
+
- uses: actions/download-artifact@v3
|
|
84
|
+
- run: pipx install twine
|
|
85
|
+
- run: twine upload -u __token__ -p "${{ secrets.PYPI_TOKEN }}" artifact/crocoddyl*.whl
|
|
86
|
+
- run: twine upload -u __token__ -p "${{ secrets.PYPI_TOKEN }}" artifact/crocoddyl*.tar.gz || true
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
name: ROS
|
|
2
|
+
|
|
3
|
+
# This determines when this workflow is run
|
|
4
|
+
on: [push, pull_request] # on all pushes and PRs
|
|
5
|
+
|
|
6
|
+
jobs:
|
|
7
|
+
CI:
|
|
8
|
+
strategy:
|
|
9
|
+
matrix:
|
|
10
|
+
env:
|
|
11
|
+
- {name: "(noetic)", ROS_DISTRO: noetic}
|
|
12
|
+
- {name: "(noetic, clang)", ROS_DISTRO: noetic, ADDITIONAL_DEBS: clang, CC: clang, CXX: clang++}
|
|
13
|
+
- {name: "(noetic, clang, multi-threading)", ROS_DISTRO: noetic, ADDITIONAL_DEBS: "clang libomp-dev", CC: clang, CXX: clang++, CMAKE_ARGS: "-DBUILD_WITH_MULTITHREADS=ON -DBUILD_WITH_NTHREADS=2"}
|
|
14
|
+
- {name: "(noetic, clang, Debug)", ROS_DISTRO: noetic, ADDITIONAL_DEBS: clang, CC: clang, CXX: clang++, CMAKE_ARGS: "-DCMAKE_BUILD_TYPE=Debug"}
|
|
15
|
+
# Format check
|
|
16
|
+
#- {name: "Format check", ROS_DISTRO: noetic, CLANG_FORMAT_CHECK: file, CLANG_FORMAT_VERSION: "6.0", BEFORE_RUN_CLANG_FORMAT_CHECK: "wget https://raw.githubusercontent.com/Gepetto/linters/master/.clang-format-6.0 -O /tmp/clang_format_check/crocoddyl/.clang-format", ADDITIONAL_DEBS: wget}
|
|
17
|
+
name: ${{ matrix.env.name }}
|
|
18
|
+
env:
|
|
19
|
+
CCACHE_DIR: /github/home/.ccache # Enable ccache
|
|
20
|
+
UPSTREAM_WORKSPACE: dependencies.rosinstall # to build example-robot-data from source as it's not released via the ROS buildfarm
|
|
21
|
+
CTEST_OUTPUT_ON_FAILURE: 1
|
|
22
|
+
# The following is a work-around for ROS tooling in conjunction with jrl-cmakemodules:
|
|
23
|
+
# - catkin_make_isolated has issues with Industrial-CI right now
|
|
24
|
+
# - colcon cannot find example-robot-data's python bindings due to ROS1 workspace integration hooks
|
|
25
|
+
# - catkin_tools correctly finds example-robot-data in the upstream_ws, but does not execute the 'run_tests' target
|
|
26
|
+
# as catkin-tools performs tests as '--catkin-make-args' instead of '--make-args' as colcon and catkin_make_isolated
|
|
27
|
+
# The work-around is thus to use catkin_tools for building and sourcing, and to manually specify execution of the test
|
|
28
|
+
# target after completion of the regular test target. The output of this step does affect the output of the CI process.
|
|
29
|
+
# Note, this does not affect projects that do not have pure CMake projects in their upstream_ws.
|
|
30
|
+
BUILDER: catkin_tools
|
|
31
|
+
AFTER_RUN_TARGET_TEST: 'source /root/target_ws/install/setup.bash && cd /root/target_ws/build/crocoddyl && env && make test'
|
|
32
|
+
runs-on: ubuntu-latest
|
|
33
|
+
steps:
|
|
34
|
+
- uses: actions/checkout@v3
|
|
35
|
+
with:
|
|
36
|
+
submodules: recursive
|
|
37
|
+
# This step will fetch/store the directory used by ccache before/after the ci run
|
|
38
|
+
- uses: actions/cache@v3
|
|
39
|
+
with:
|
|
40
|
+
path: ${{ env.CCACHE_DIR }}
|
|
41
|
+
key: ccache-${{ matrix.env.ROS_DISTRO }}-${{ matrix.env.ROS_REPO }}
|
|
42
|
+
# Run industrial_ci - use fork until awaits https://github.com/ros-industrial/industrial_ci/issues/767 is resolved
|
|
43
|
+
- uses: 'wxmerkt/industrial_ci@topic/clang-format-check-in-deterministic-location'
|
|
44
|
+
env: ${{ matrix.env }}
|
|
45
|
+
# # Run industrial_ci
|
|
46
|
+
# - uses: 'ros-industrial/industrial_ci@master'
|
|
47
|
+
# env: ${{ matrix.env }}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
name: ROS
|
|
2
|
+
|
|
3
|
+
# This determines when this workflow is run
|
|
4
|
+
on: [push, pull_request]
|
|
5
|
+
|
|
6
|
+
jobs:
|
|
7
|
+
CI:
|
|
8
|
+
strategy:
|
|
9
|
+
matrix:
|
|
10
|
+
env:
|
|
11
|
+
- {name: "(humble, Release)", ROS_DISTRO: humble}
|
|
12
|
+
# - {name: "humble, multi-threading", ROS_DISTRO: humble, ADDITIONAL_DEBS: "libomp-dev", CMAKE_ARGS: "-DBUILD_WITH_MULTITHREADS=ON -DBUILD_WITH_NTHREADS=2"}
|
|
13
|
+
# - {name: "humble, Debug", ROS_DISTRO: noetic, CMAKE_ARGS: "-DCMAKE_BUILD_TYPE=Debug"}
|
|
14
|
+
- {name: "(rolling, Release)", ROS_DISTRO: rolling}
|
|
15
|
+
# - {name: "rolling, multi-threading", ROS_DISTRO: rolling, ADDITIONAL_DEBS: "libomp-dev", CMAKE_ARGS: "-DBUILD_WITH_MULTITHREADS=ON -DBUILD_WITH_NTHREADS=2"}
|
|
16
|
+
# - {name: "rolling, Debug", ROS_DISTRO: rolling, CMAKE_ARGS: "-DCMAKE_BUILD_TYPE=Debug"}
|
|
17
|
+
name: ${{ matrix.env.name }}
|
|
18
|
+
env:
|
|
19
|
+
CCACHE_DIR: /github/home/.ccache # Enable ccache
|
|
20
|
+
UPSTREAM_WORKSPACE: dependencies.rosinstall # to build example-robot-data from source as it's not released via the ROS buildfarm
|
|
21
|
+
CTEST_OUTPUT_ON_FAILURE: 1
|
|
22
|
+
BUILDER: colcon
|
|
23
|
+
# This by-passes issues on importing example_robot_data module when running examples and unit tests.
|
|
24
|
+
# It seems target_ws is unable to properly overlay upstream_ws.
|
|
25
|
+
AFTER_SETUP_UPSTREAM_WORKSPACE: 'pip install example-robot-data'
|
|
26
|
+
runs-on: ubuntu-latest
|
|
27
|
+
steps:
|
|
28
|
+
- uses: actions/checkout@v3
|
|
29
|
+
with:
|
|
30
|
+
submodules: recursive
|
|
31
|
+
# This step will fetch/store the directory used by ccache before/after the ci run
|
|
32
|
+
- uses: actions/cache@v3
|
|
33
|
+
with:
|
|
34
|
+
path: ${{ env.CCACHE_DIR }}
|
|
35
|
+
key: ccache-${{ matrix.env.ROS_DISTRO }}-${{ matrix.env.ROS_REPO }}
|
|
36
|
+
- uses: 'ros-industrial/industrial_ci@master'
|
|
37
|
+
env: ${{ matrix.env }}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
name: Test Wheel packaging
|
|
2
|
+
|
|
3
|
+
on: ["push", "pull_request"]
|
|
4
|
+
|
|
5
|
+
env:
|
|
6
|
+
CMEEL_JOBS: 1
|
|
7
|
+
CMEEL_LOG_LEVEL: 'DEBUG'
|
|
8
|
+
CMEEL_TEST_JOBS: 1
|
|
9
|
+
|
|
10
|
+
jobs:
|
|
11
|
+
build:
|
|
12
|
+
name: "Build python ${{ matrix.python-version }} on ${{ matrix.os }}"
|
|
13
|
+
runs-on: "${{ matrix.os }}"
|
|
14
|
+
strategy:
|
|
15
|
+
matrix:
|
|
16
|
+
os: ["ubuntu-latest", "macos-latest"]
|
|
17
|
+
python-version: ["3.8", "3.9", "3.10", "3.11"]
|
|
18
|
+
exclude:
|
|
19
|
+
- os: "macos-latest"
|
|
20
|
+
python-version: "3.8"
|
|
21
|
+
steps:
|
|
22
|
+
- uses: actions/checkout@v3
|
|
23
|
+
with:
|
|
24
|
+
submodules: 'true'
|
|
25
|
+
- uses: actions/setup-python@v4
|
|
26
|
+
with:
|
|
27
|
+
python-version: ${{ matrix.python-version }}
|
|
28
|
+
- name: setup
|
|
29
|
+
run: |
|
|
30
|
+
python -m pip install -U pip
|
|
31
|
+
python -m pip install wheel
|
|
32
|
+
- name: build cmeel wheel
|
|
33
|
+
run: python -m pip wheel -vw wh .
|
|
34
|
+
- uses: actions/upload-artifact@v3
|
|
35
|
+
with:
|
|
36
|
+
path: wh
|
|
37
|
+
|
|
38
|
+
test:
|
|
39
|
+
needs: ["build"]
|
|
40
|
+
name: "Test ${{ matrix.python-version }} on ${{ matrix.os }}"
|
|
41
|
+
runs-on: "${{ matrix.os }}"
|
|
42
|
+
strategy:
|
|
43
|
+
matrix:
|
|
44
|
+
os: ["ubuntu-latest", "macos-latest"]
|
|
45
|
+
python-version: ["3.8", "3.9", "3.10", "3.11"]
|
|
46
|
+
exclude:
|
|
47
|
+
- os: "macos-latest"
|
|
48
|
+
python-version: "3.8"
|
|
49
|
+
steps:
|
|
50
|
+
- uses: actions/download-artifact@v3
|
|
51
|
+
- uses: actions/setup-python@v4
|
|
52
|
+
with:
|
|
53
|
+
python-version: ${{ matrix.python-version }}
|
|
54
|
+
- name: setup
|
|
55
|
+
run: |
|
|
56
|
+
python -m pip install -U pip
|
|
57
|
+
python -m pip install wheel simple503
|
|
58
|
+
python -m simple503 --sort --base-url "${{ github.workspace }}/artifact" artifact
|
|
59
|
+
- name: install wheel
|
|
60
|
+
run: python -m pip install -i "file:///${{ github.workspace }}/artifact" crocoddyl
|
|
61
|
+
- name: test
|
|
62
|
+
run: python -c "import crocoddyl"
|
|
63
|
+
env:
|
|
64
|
+
PYTHONWARNINGS: error
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
include: http://rainboard.laas.fr/project/crocoddyl/.gitlab-ci.yml
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
ci:
|
|
2
|
+
autoupdate_branch: devel
|
|
3
|
+
repos:
|
|
4
|
+
- repo: https://github.com/PyCQA/isort
|
|
5
|
+
rev: 5.12.0
|
|
6
|
+
hooks:
|
|
7
|
+
- id: isort
|
|
8
|
+
args:
|
|
9
|
+
- --profile
|
|
10
|
+
- black
|
|
11
|
+
- --project
|
|
12
|
+
- crocoddyl
|
|
13
|
+
- --filter-files
|
|
14
|
+
- repo: https://github.com/cheshirekow/cmake-format-precommit
|
|
15
|
+
rev: v0.6.13
|
|
16
|
+
hooks:
|
|
17
|
+
- id: cmake-format
|
|
18
|
+
- repo: https://github.com/pappasam/toml-sort
|
|
19
|
+
rev: v0.23.1
|
|
20
|
+
hooks:
|
|
21
|
+
- id: toml-sort-fix
|
|
22
|
+
- repo: https://github.com/pre-commit/mirrors-clang-format
|
|
23
|
+
rev: v17.0.6
|
|
24
|
+
hooks:
|
|
25
|
+
- id: clang-format
|
|
26
|
+
args:
|
|
27
|
+
- --style=Google
|
|
28
|
+
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
29
|
+
rev: v4.5.0
|
|
30
|
+
hooks:
|
|
31
|
+
- id: check-added-large-files
|
|
32
|
+
- id: check-ast
|
|
33
|
+
- id: check-executables-have-shebangs
|
|
34
|
+
- id: check-json
|
|
35
|
+
- id: check-merge-conflict
|
|
36
|
+
- id: check-symlinks
|
|
37
|
+
- id: check-toml
|
|
38
|
+
- id: check-yaml
|
|
39
|
+
- id: debug-statements
|
|
40
|
+
- id: destroyed-symlinks
|
|
41
|
+
- id: detect-private-key
|
|
42
|
+
- id: end-of-file-fixer
|
|
43
|
+
- id: fix-byte-order-marker
|
|
44
|
+
- id: mixed-line-ending
|
|
45
|
+
- id: trailing-whitespace
|
|
46
|
+
- repo: https://github.com/psf/black
|
|
47
|
+
rev: 23.11.0
|
|
48
|
+
hooks:
|
|
49
|
+
- id: black
|
|
50
|
+
- repo: https://github.com/pycqa/flake8
|
|
51
|
+
rev: 6.1.0
|
|
52
|
+
hooks:
|
|
53
|
+
- id: flake8
|
|
54
|
+
args:
|
|
55
|
+
- --max-line-length
|
|
56
|
+
- '88'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
cmake
|