aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2011-10-24 09:31:33 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2011-10-24 09:31:33 +0200
commit70df09b76d1a13a55de1ebe6834ee359f403be89 (patch)
tree6a9a6d69ed28fc352bcdadda01af6a749c9fea61 /test
parenta2d414f56876c5fa4fbaebfc90c212e9d1830148 (diff)
move DynamicSparseMatrix to SparseExtra
Diffstat (limited to 'test')
-rw-r--r--test/sparse.h1
-rw-r--r--test/sparse_basic.cpp3
-rw-r--r--test/sparse_product.cpp2
3 files changed, 1 insertions, 5 deletions
diff --git a/test/sparse.h b/test/sparse.h
index 81ce82e16..4ca6b5aed 100644
--- a/test/sparse.h
+++ b/test/sparse.h
@@ -23,6 +23,7 @@
// Eigen. If not, see <http://www.gnu.org/licenses/>.
#ifndef EIGEN_TESTSPARSE_H
+#define EIGEN_TESTSPARSE_H
#define EIGEN_YES_I_KNOW_SPARSE_MODULE_IS_NOT_STABLE_YET
diff --git a/test/sparse_basic.cpp b/test/sparse_basic.cpp
index d4579e4c9..487e3c1c3 100644
--- a/test/sparse_basic.cpp
+++ b/test/sparse_basic.cpp
@@ -301,8 +301,5 @@ void test_sparse_basic()
CALL_SUBTEST_2(( sparse_basic(SparseMatrix<std::complex<double> >(s, s)) ));
CALL_SUBTEST_1(( sparse_basic(SparseMatrix<double>(s, s)) ));
CALL_SUBTEST_1(( sparse_basic(SparseMatrix<double,ColMajor,long int>(s, s)) ));
-
- CALL_SUBTEST_3(( sparse_basic(DynamicSparseMatrix<double>(s, s)) ));
- CALL_SUBTEST_3(( sparse_basic(DynamicSparseMatrix<double,ColMajor,long int>(s, s)) ));
}
}
diff --git a/test/sparse_product.cpp b/test/sparse_product.cpp
index 0082b56cd..ac1dac5f5 100644
--- a/test/sparse_product.cpp
+++ b/test/sparse_product.cpp
@@ -204,8 +204,6 @@ void test_sparse_product()
CALL_SUBTEST_1( (sparse_product<SparseMatrix<double,RowMajor> >()) );
CALL_SUBTEST_2( (sparse_product<SparseMatrix<std::complex<double>, ColMajor > >()) );
CALL_SUBTEST_2( (sparse_product<SparseMatrix<std::complex<double>, RowMajor > >()) );
- CALL_SUBTEST_3( (sparse_product<DynamicSparseMatrix<float, ColMajor> >()) );
- CALL_SUBTEST_3( (sparse_product<DynamicSparseMatrix<float, RowMajor> >()) );
CALL_SUBTEST_4( (sparse_product_regression_test<SparseMatrix<double,RowMajor>, Matrix<double, Dynamic, Dynamic, RowMajor> >()) );
}
}