From 88534ba623421c956d8ffcda2d27f41d704d15ef Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Tue, 3 Jul 2018 07:37:12 +0200 Subject: update eigen --- eigen/unsupported/test/sparse_extra.cpp | 23 ----------------------- 1 file changed, 23 deletions(-) (limited to 'eigen/unsupported/test/sparse_extra.cpp') diff --git a/eigen/unsupported/test/sparse_extra.cpp b/eigen/unsupported/test/sparse_extra.cpp index 4f6723d..a010ceb 100644 --- a/eigen/unsupported/test/sparse_extra.cpp +++ b/eigen/unsupported/test/sparse_extra.cpp @@ -129,19 +129,6 @@ template void sparse_extra(const SparseMatrixType& re } -template -void check_marketio() -{ - typedef Matrix DenseMatrix; - Index rows = internal::random(1,100); - Index cols = internal::random(1,100); - SparseMatrixType m1, m2; - m1 = DenseMatrix::Random(rows, cols).sparseView(); - saveMarket(m1, "sparse_extra.mtx"); - loadMarket(m2, "sparse_extra.mtx"); - VERIFY_IS_EQUAL(DenseMatrix(m1),DenseMatrix(m2)); -} - void test_sparse_extra() { for(int i = 0; i < g_repeat; i++) { @@ -156,15 +143,5 @@ void test_sparse_extra() CALL_SUBTEST_3( (sparse_product >()) ); CALL_SUBTEST_3( (sparse_product >()) ); - - CALL_SUBTEST_4( (check_marketio >()) ); - CALL_SUBTEST_4( (check_marketio >()) ); - CALL_SUBTEST_4( (check_marketio,ColMajor,int> >()) ); - CALL_SUBTEST_4( (check_marketio,ColMajor,int> >()) ); - CALL_SUBTEST_4( (check_marketio >()) ); - CALL_SUBTEST_4( (check_marketio >()) ); - CALL_SUBTEST_4( (check_marketio,ColMajor,long int> >()) ); - CALL_SUBTEST_4( (check_marketio,ColMajor,long int> >()) ); - TEST_SET_BUT_UNUSED_VARIABLE(s); } } -- cgit v1.2.3