123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #ifndef IGL_HARWELL_BOEING_H
- #define IGL_HARWELL_BOEING_H
- #include "igl_inline.h"
- #define EIGEN_YES_I_KNOW_SPARSE_MODULE_IS_NOT_STABLE_YET
- #include <Eigen/Sparse>
- #include <vector>
- namespace igl
- {
- // Convert the matrix to Compressed sparse column (CSC or CCS) format,
- // also known as Harwell Boeing format. As described:
- // http://netlib.org/linalg/html_templates/node92.html
- // or
- // http://en.wikipedia.org/wiki/Sparse_matrix
- // #Compressed_sparse_column_.28CSC_or_CCS.29
- // Templates:
- // Scalar type of sparse matrix like double
- // Inputs:
- // A sparse m by n matrix
- // Outputs:
- // num_rows number of rows
- // V non-zero values, row indices running fastest, size(V) = nnz
- // R row indices corresponding to vals, size(R) = nnz
- // C index in vals of first entry in each column, size(C) = num_cols+1
- //
- // All indices and pointers are 0-based
- template <typename Scalar, typename Index>
- IGL_INLINE void harwell_boeing(
- const Eigen::SparseMatrix<Scalar> & A,
- int & num_rows,
- std::vector<Scalar> & V,
- std::vector<Index> & R,
- std::vector<Index> & C);
- }
- #ifdef IGL_HEADER_ONLY
- # include "harwell_boeing.cpp"
- #endif
- #endif
|