123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #ifndef IGL_GROUP_SUM_MATRIX_H
- #define IGL_GROUP_SUM_MATRIX_H
- #include "igl_inline.h"
- #include <Eigen/Dense>
- #include <Eigen/Sparse>
- namespace igl
- {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- template <typename T>
- IGL_INLINE void group_sum_matrix(
- const Eigen::Matrix<int,Eigen::Dynamic,1> & G,
- const int k,
- Eigen::SparseMatrix<T>& A);
-
- template <typename T>
- IGL_INLINE void group_sum_matrix(
- const Eigen::Matrix<int,Eigen::Dynamic,1> & G,
- Eigen::SparseMatrix<T>& A);
- }
- #ifndef IGL_STATIC_LIBRARY
- # include "group_sum_matrix.cpp"
- #endif
- #endif
|