Constructs a read-write Map to a sparse matrix of size \a rows x \a cols, containing \a nnz non-zero coefficients, * stored as a sparse format as defined by the pointers \a outerIndexPtr, \a innerIndexPtr, and \a valuePtr. * If the optional parameter \a innerNonZerosPtr is the null pointer, then a standard compressed format is assumed. * The inner indices must be sorted appropria
| 246 | * More details on the expected storage schemes are given in the \ref TutorialSparse "manual pages". |
| 247 | */ |
| 248 | inline Map(Index rows, Index cols, Index nnz, StorageIndex* outerIndexPtr, |
| 249 | StorageIndex* innerIndexPtr, Scalar* valuePtr, StorageIndex* innerNonZerosPtr = 0) |
| 250 | : Base(rows, cols, nnz, outerIndexPtr, innerIndexPtr, valuePtr, innerNonZerosPtr) |
| 251 | {} |
| 252 | #ifndef EIGEN_PARSED_BY_DOXYGEN |
| 253 | /** Empty destructor */ |
| 254 | inline ~Map() {} |
no outgoing calls
no test coverage detected