aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/Sparse
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2009-11-18 14:52:52 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2009-11-18 14:52:52 +0100
commit0529ecfe1b43d40e40755a2d856188d3ded2c14e (patch)
tree8f3cebe51db62e2f65c48d547cc3e89de5285669 /Eigen/Sparse
parent1e62e0b0d823078aa2d9b8ed2c93f7bc889df177 (diff)
Big refactoring/cleaning in the spasre module with
in particular the addition of a selfadjointView, and the extension of triangularView. The rest is cleaning and does not change/extend the API.
Diffstat (limited to 'Eigen/Sparse')
-rw-r--r--Eigen/Sparse5
1 files changed, 2 insertions, 3 deletions
diff --git a/Eigen/Sparse b/Eigen/Sparse
index 552dbde4a..f4dcad07e 100644
--- a/Eigen/Sparse
+++ b/Eigen/Sparse
@@ -98,7 +98,6 @@ struct Sparse {};
#include "src/Sparse/SparseVector.h"
#include "src/Sparse/CoreIterators.h"
#include "src/Sparse/SparseTranspose.h"
-#include "src/Sparse/SparseCwise.h"
#include "src/Sparse/SparseCwiseUnaryOp.h"
#include "src/Sparse/SparseCwiseBinaryOp.h"
#include "src/Sparse/SparseDot.h"
@@ -107,12 +106,12 @@ struct Sparse {};
#include "src/Sparse/SparseFuzzy.h"
#include "src/Sparse/SparseProduct.h"
#include "src/Sparse/SparseDiagonalProduct.h"
-#include "src/Sparse/SparseTriangular.h"
+#include "src/Sparse/SparseTriangularView.h"
+#include "src/Sparse/SparseSelfAdjointView.h"
#include "src/Sparse/TriangularSolver.h"
#include "src/Sparse/SparseLLT.h"
#include "src/Sparse/SparseLDLT.h"
#include "src/Sparse/SparseLU.h"
-#include "src/Sparse/SparseExpressionMaker.h"
#ifdef EIGEN_CHOLMOD_SUPPORT
# include "src/Sparse/CholmodSupport.h"