diff options
author | Gael Guennebaud <g.gael@free.fr> | 2009-01-15 12:52:59 +0000 |
---|---|---|
committer | Gael Guennebaud <g.gael@free.fr> | 2009-01-15 12:52:59 +0000 |
commit | 96e1e582ff879cb2287847e3d9129cd121a978dd (patch) | |
tree | 8cb74789192a3aebc44004bb9acb5781c9da4eb2 /Eigen/Sparse | |
parent | 4f33fbfc073c2b48fd8d80754b1d1b462132cda8 (diff) |
Sparse module:
* add a MappedSparseMatrix class (like Eigen::Map but for sparse
matrices)
* rename SparseArray to CompressedStorage
Diffstat (limited to 'Eigen/Sparse')
-rw-r--r-- | Eigen/Sparse | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Eigen/Sparse b/Eigen/Sparse index b73946c74..33521399e 100644 --- a/Eigen/Sparse +++ b/Eigen/Sparse @@ -72,11 +72,12 @@ namespace Eigen { #include "src/Sparse/SparseUtil.h" #include "src/Sparse/SparseMatrixBase.h" -#include "src/Sparse/SparseArray.h" +#include "src/Sparse/CompressedStorage.h" #include "src/Sparse/AmbiVector.h" #include "src/Sparse/RandomSetter.h" #include "src/Sparse/SparseBlock.h" #include "src/Sparse/SparseMatrix.h" +#include "src/Sparse/MappedSparseMatrix.h" #include "src/Sparse/SparseVector.h" #include "src/Sparse/CoreIterators.h" #include "src/Sparse/SparseTranspose.h" |