aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/bicgstab.cpp
diff options
context:
space:
mode:
authorGravatar Desire NUENTSA <desire.nuentsa_wakam@inria.fr>2012-03-29 14:32:54 +0200
committerGravatar Desire NUENTSA <desire.nuentsa_wakam@inria.fr>2012-03-29 14:32:54 +0200
commitf804a319c81cb1629abb9bdc97dd74a2d2dec3d7 (patch)
tree5d59101e9f756ed2cc02ae6047dcaaf8a67dbfe4 /test/bicgstab.cpp
parentada9e791450618d1d608db11fcdd97adde824cbe (diff)
modify the unit tests of sparse linear solvers to enable tests on real matrices, from MatrixMarket for instance
Diffstat (limited to 'test/bicgstab.cpp')
-rw-r--r--test/bicgstab.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/test/bicgstab.cpp b/test/bicgstab.cpp
index bb9da898f..2b6403583 100644
--- a/test/bicgstab.cpp
+++ b/test/bicgstab.cpp
@@ -40,8 +40,6 @@ template<typename T> void test_bicgstab_T()
void test_bicgstab()
{
- for(int i = 0; i < g_repeat; i++) {
- CALL_SUBTEST_1(test_bicgstab_T<double>());
- CALL_SUBTEST_2(test_bicgstab_T<std::complex<double> >());
- }
+ CALL_SUBTEST_1(test_bicgstab_T<double>());
+ CALL_SUBTEST_2(test_bicgstab_T<std::complex<double> >());
}