18 #ifndef __invdyn_math_fwd_hpp__
19 #define __invdyn_math_fwd_hpp__
23 #ifdef EIGEN_RUNTIME_NO_MALLOC
24 #define EIGEN_MALLOC_ALLOWED Eigen::internal::set_is_malloc_allowed(true);
25 #define EIGEN_MALLOC_NOT_ALLOWED Eigen::internal::set_is_malloc_allowed(false);
27 #define EIGEN_MALLOC_ALLOWED
28 #define EIGEN_MALLOC_NOT_ALLOWED
35 typedef Eigen::Matrix<Scalar, Eigen::Dynamic, 1>
Vector;
36 typedef Eigen::Matrix<Scalar, Eigen::Dynamic, Eigen::Dynamic>
Matrix;
38 typedef Eigen::Matrix<bool, Eigen::Dynamic, 1>
VectorXb;
40 typedef Eigen::Matrix<Scalar, 3, 1>
Vector3;
41 typedef Eigen::Matrix<Scalar, 6, 1>
Vector6;
42 typedef Eigen::Matrix<Scalar, 3, Eigen::Dynamic>
Matrix3x;
64 #endif // ifndef __invdyn_math_fwd_hpp__