12345678910111213141516171819202122232425262728 |
- #include "is_sparse.h"
- template <typename T>
- IGL_INLINE bool igl::is_sparse(
- const Eigen::SparseMatrix<T> & A)
- {
- return true;
- }
- template <typename DerivedA>
- IGL_INLINE bool igl::is_sparse(
- const Eigen::PlainObjectBase<DerivedA>& A)
- {
- return false;
- }
- #ifdef IGL_STATIC_LIBRARY
- template bool igl::is_sparse<double>(Eigen::SparseMatrix<double, 0, int> const&);
- template bool igl::is_sparse<Eigen::Matrix<double, -1, -1, 0, -1, -1> >(Eigen::PlainObjectBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> > const&);
- #endif
|