From 870f53c11d6f39428b7d4793f9c12d6a9b07aec5 Mon Sep 17 00:00:00 2001 From: Christian Engwer <christi@dune-project.org> Date: Mon, 20 Aug 2012 09:11:18 +0000 Subject: [PATCH] [test] disable test for GS with multiple iterations, it seems to be broken. [[Imported from SVN: r1671]] --- dune/istl/test/complexrhstest.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dune/istl/test/complexrhstest.cc b/dune/istl/test/complexrhstest.cc index 314cb7f3..078f08d9 100644 --- a/dune/istl/test/complexrhstest.cc +++ b/dune/istl/test/complexrhstest.cc @@ -144,7 +144,7 @@ int main(int argc, char** argv) JacobiPreconditioner jacobiPrec2(mat,maxIter,relaxFactor); GaussSeidelPreconditioner gsPrec1(mat,1,relaxFactor); - GaussSeidelPreconditioner gsPrec2(mat,maxIter,relaxFactor); + // GaussSeidelPreconditioner gsPrec2(mat,maxIter,relaxFactor); SORPreconditioner sorPrec1(mat,1,relaxFactor); SORPreconditioner sorPrec2(mat,maxIter,relaxFactor); @@ -184,9 +184,9 @@ int main(int argc, char** argv) GaussSeidelSolver solverGaussSeidel1(fop,gsPrec1,reduction,maxIter,1); std::cout << "LoopSolver with a single GaussSeidel iteration as preconditione converged: " << solverTest(solverGaussSeidel1) << std::endl << std::endl; - typedef Dune::LoopSolver<Vector> GaussSeidelSolver; - GaussSeidelSolver solverGaussSeidel2(fop,gsPrec2,reduction,maxIter,1); - std::cout << "LoopSolver with multiple GaussSeidel iterations as preconditioner converged: " << solverTest(solverGaussSeidel2) << std::endl << std::endl; + // typedef Dune::LoopSolver<Vector> GaussSeidelSolver; + // GaussSeidelSolver solverGaussSeidel2(fop,gsPrec2,reduction,maxIter,1); + // std::cout << "LoopSolver with multiple GaussSeidel iterations as preconditioner converged: " << solverTest(solverGaussSeidel2) << std::endl << std::endl; typedef Dune::LoopSolver<Vector> SORSolver; SORSolver solverSOR1(fop,sorPrec1,reduction,maxIter,1); -- GitLab