Skip to content
Snippets Groups Projects
Verified Commit 9aabfab7 authored by Justin Carpentier's avatar Justin Carpentier
Browse files

core: add check_swap helper

parent 0fe62d98
No related branches found
No related tags found
No related merge requests found
......@@ -66,6 +66,17 @@ namespace eigenpy
}
}
};
template<typename MatType>
bool check_swap(PyArrayObject * pyArray,
const Eigen::MatrixBase<MatType> & mat)
{
if(PyArray_NDIM(pyArray) == 0) return false;
if(mat.rows() == PyArray_DIMS(pyArray)[0])
return false;
else
return true;
}
template<typename Scalar, typename NewScalar, bool cast_is_valid = FromTypeToType<Scalar,NewScalar>::value >
struct cast_matrix_or_array
......
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