aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/test/gmres.cpp
diff options
context:
space:
mode:
authorGravatar Desire NUENTSA <desire.nuentsa_wakam@inria.fr>2012-10-09 13:30:48 +0200
committerGravatar Desire NUENTSA <desire.nuentsa_wakam@inria.fr>2012-10-09 13:30:48 +0200
commit77f92bf0b1e9dda872c3844c368f97fa5644a4e4 (patch)
treee368229a2c45f9a4f2219a33bd4fb6e3c8a44a21 /unsupported/test/gmres.cpp
parentf75703400174d7a019037cb6803b8f4ce3f3eeb0 (diff)
the repeated solves are already present in check_sparse_solving()
Diffstat (limited to 'unsupported/test/gmres.cpp')
-rw-r--r--unsupported/test/gmres.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/unsupported/test/gmres.cpp b/unsupported/test/gmres.cpp
index 647c16927..f2969116b 100644
--- a/unsupported/test/gmres.cpp
+++ b/unsupported/test/gmres.cpp
@@ -26,8 +26,6 @@ template<typename T> void test_gmres_T()
void test_gmres()
{
- for(int i = 0; i < g_repeat; i++) {
- CALL_SUBTEST_1(test_gmres_T<double>());
- CALL_SUBTEST_2(test_gmres_T<std::complex<double> >());
- }
+ CALL_SUBTEST_1(test_gmres_T<double>());
+ CALL_SUBTEST_2(test_gmres_T<std::complex<double> >());
}