#include <Eigen/Core>
#include "copp/core.hpp"
Go to the source code of this file.
|
| namespace | copp |
| | Root namespace for the C++ facade: paths, robots, constraints, matrices, profiles, errors, objectives, interpolation, and solver entry points.
|
| namespace | copp::eigen |
| | Optional Eigen adapters that convert Eigen objects to COPP matrix views or map COPP-owned matrices without changing the core API types.
|
|
| using | copp::eigen::ColMajorMatrix = Eigen::Matrix<double, Eigen::Dynamic, Eigen::Dynamic, Eigen::ColMajor> |
| | Dynamic column-major Eigen matrix type matching copp::Matrix storage.
|
| using | copp::eigen::RowMajorMatrix = Eigen::Matrix<double, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor> |
| | Dynamic row-major Eigen matrix accepted by input adapters.
|
| using | copp::eigen::Vector = Eigen::Matrix<double, Eigen::Dynamic, 1> |
| | Dynamic Eigen vector accepted by Span adapters.
|