Sparse module:

* add a MappedSparseMatrix class (like Eigen::Map but for sparse
  matrices)
* rename SparseArray to CompressedStorage
This commit is contained in:
Gael Guennebaud
2009-01-15 12:52:59 +00:00
parent 4f33fbfc07
commit 96e1e582ff
10 changed files with 285 additions and 90 deletions

View File

@@ -68,7 +68,7 @@ class SparseVector
IsColVector = ei_traits<SparseVector>::IsColVector
};
SparseArray<Scalar> m_data;
CompressedStorage<Scalar> m_data;
int m_size;