acados_solver_ros2  main
Acados-based NMPC controllers for ROS2 control
Namespaces | Typedefs
acados_types.hpp File Reference
#include <Eigen/Dense>
#include <string>
#include <unordered_map>
#include <vector>
Include dependency graph for acados_types.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

 acados
 

Typedefs

using acados::IndexVector = std::vector< unsigned int >
 List of indexes. More...
 
using acados::ValueVector = std::vector< double >
 List of values (double). More...
 
using acados::IndexMap = std::unordered_map< std::string, IndexVector >
 Mapping between keys (std::string) and indexes (acados::IndexVector). More...
 
using acados::ValueMap = std::unordered_map< std::string, ValueVector >
 Mapping between keys (std::string) and data (acados::ValueVector). More...
 
using acados::RowMajorXd = Eigen::Matrix< double, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor >
 Dynamic size row-major array (hence compatible with Acados C-arrays). More...
 
using acados::ColumnMajorXd = Eigen::Matrix< double, Eigen::Dynamic, Eigen::Dynamic, Eigen::ColMajor >
 Dynamic size colum-major array (by default in Eigen). More...