aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/Sparse
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2008-10-21 13:35:04 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2008-10-21 13:35:04 +0000
commitcf0f82ecbe1b92ec44e8fe34f65d6183059c9491 (patch)
treea4d6b680561765f192fc384100c68071e86648ab /Eigen/Sparse
parent9e02e42ff6757da1c96518a24c913a01250564ee (diff)
sparse module:
- remove some useless stuff => let's focus on a single sparse matrix format - finalize the new RandomSetter
Diffstat (limited to 'Eigen/Sparse')
-rw-r--r--Eigen/Sparse10
1 files changed, 7 insertions, 3 deletions
diff --git a/Eigen/Sparse b/Eigen/Sparse
index 2364c6fe4..54b15b8ae 100644
--- a/Eigen/Sparse
+++ b/Eigen/Sparse
@@ -8,6 +8,10 @@
#include <cstring>
#include <algorithm>
+#ifdef EIGEN_GOOGLEHASH_SUPPORT
+ #include <google/dense_hash_map>
+#endif
+
#ifdef EIGEN_CHOLMOD_SUPPORT
extern "C" {
#include "cholmod.h"
@@ -70,10 +74,10 @@ namespace Eigen {
#include "src/Sparse/RandomSetter.h"
#include "src/Sparse/SparseBlock.h"
#include "src/Sparse/SparseMatrix.h"
-#include "src/Sparse/HashMatrix.h"
-#include "src/Sparse/LinkedVectorMatrix.h"
+//#include "src/Sparse/HashMatrix.h"
+//#include "src/Sparse/LinkedVectorMatrix.h"
#include "src/Sparse/CoreIterators.h"
-#include "src/Sparse/SparseSetter.h"
+//#include "src/Sparse/SparseSetter.h"
#include "src/Sparse/SparseProduct.h"
#include "src/Sparse/TriangularSolver.h"
#include "src/Sparse/SparseLLT.h"