aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2010-06-19 15:24:39 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2010-06-19 15:24:39 +0200
commit17af8c763d5aa58c40fc2c40ff6e8d6fc28a8d63 (patch)
treec89c8d9dab436bf1650ace5bc64e3452c9959b2a
parentb1103c57677de56ef7b266a2b946ac64d73e8483 (diff)
fix compilation of sparse tests
-rw-r--r--test/sparse.h1
-rw-r--r--unsupported/test/sparse_ldlt.cpp1
-rw-r--r--unsupported/test/sparse_llt.cpp1
-rw-r--r--unsupported/test/sparse_lu.cpp1
4 files changed, 3 insertions, 1 deletions
diff --git a/test/sparse.h b/test/sparse.h
index 246dc1f14..4733e4d10 100644
--- a/test/sparse.h
+++ b/test/sparse.h
@@ -41,7 +41,6 @@ namespace std {
#include <Eigen/Cholesky>
#include <Eigen/LU>
#include <Eigen/Sparse>
-#include <Eigen/SparseExtra>
enum {
ForceNonZeroDiag = 1,
diff --git a/unsupported/test/sparse_ldlt.cpp b/unsupported/test/sparse_ldlt.cpp
index 8671807c9..618a22bf6 100644
--- a/unsupported/test/sparse_ldlt.cpp
+++ b/unsupported/test/sparse_ldlt.cpp
@@ -23,6 +23,7 @@
// Eigen. If not, see <http://www.gnu.org/licenses/>.
#include "sparse.h"
+#include <Eigen/SparseExtra>
#ifdef EIGEN_TAUCS_SUPPORT
#include <Eigen/TaucsSupport>
diff --git a/unsupported/test/sparse_llt.cpp b/unsupported/test/sparse_llt.cpp
index 97360f1ec..0c7340ccd 100644
--- a/unsupported/test/sparse_llt.cpp
+++ b/unsupported/test/sparse_llt.cpp
@@ -23,6 +23,7 @@
// Eigen. If not, see <http://www.gnu.org/licenses/>.
#include "sparse.h"
+#include <Eigen/SparseExtra>
#ifdef EIGEN_CHOLMOD_SUPPORT
#include <Eigen/CholmodSupport>
diff --git a/unsupported/test/sparse_lu.cpp b/unsupported/test/sparse_lu.cpp
index bdf79ca23..75aa7a924 100644
--- a/unsupported/test/sparse_lu.cpp
+++ b/unsupported/test/sparse_lu.cpp
@@ -23,6 +23,7 @@
// Eigen. If not, see <http://www.gnu.org/licenses/>.
#include "sparse.h"
+#include <Eigen/SparseExtra>
#ifdef EIGEN_UMFPACK_SUPPORT
#include <Eigen/UmfPackSupport>