Skip to content
Snippets Groups Projects
Commit 10ee2e5f authored by Justin Carpentier's avatar Justin Carpentier
Browse files

core: expose Eigen::Tensor

parent 0955b77a
No related branches found
No related tags found
No related merge requests found
......@@ -57,6 +57,10 @@ EIGEN_DONT_INLINE void exposeType() {
template <typename Scalar>
EIGEN_DONT_INLINE void exposeType() {
exposeType<Scalar, 0>();
enableEigenPySpecific<Eigen::Tensor<Scalar, 1> >();
enableEigenPySpecific<Eigen::Tensor<Scalar, 2> >();
enableEigenPySpecific<Eigen::Tensor<Scalar, 3> >();
}
} // namespace eigenpy
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment