31 template <
int N,
int M>
32 using MappedMatrix = Eigen::Map<Eigen::Matrix<double, N, M, Eigen::ColMajor>>;
35 template <
int N,
int M>
37 Eigen::Map<const Eigen::Matrix<double, N, M, Eigen::ColMajor>>;
std::function< bool(const double t, MappedConstVector< N > const &y, MappedConstVector< N > const &ydot, MappedMatrix< N, N > &jac)> JacobianFunction
MappedConstMatrix< N, 1 > MappedConstVector
Eigen::Map< const Eigen::Matrix< double, N, M, Eigen::ColMajor > > MappedConstMatrix
Behaves like a const Eigen::Matrix.
Eigen::Map< Eigen::Matrix< double, N, M, Eigen::ColMajor > > MappedMatrix
std::function< bool(const double t, MappedConstVector< N > const &y, MappedVector< N > &ydot)> Function
MappedMatrix< N, 1 > MappedVector