From e6de7703d32821ad9ad465089ff87d29461304c3 Mon Sep 17 00:00:00 2001 From: Martin Kronbichler Date: Tue, 14 May 2019 11:10:03 +0200 Subject: [PATCH] Adapt test file for Trilinos IC precondition --- tests/trilinos/precondition.cc | 4 ++-- tests/trilinos/precondition.output | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/trilinos/precondition.cc b/tests/trilinos/precondition.cc index d10907f29d..4217a9aa51 100644 --- a/tests/trilinos/precondition.cc +++ b/tests/trilinos/precondition.cc @@ -332,7 +332,7 @@ Step4::solve(int cycle) { deallog.push("IC"); - static constexpr std::array lower{49, 67}; + static constexpr std::array lower{48, 67}; TrilinosWrappers::PreconditionIC preconditioner; solution = 0; SolverControl solver_control(1000, 1e-10); @@ -342,7 +342,7 @@ Step4::solve(int cycle) solver.solve(system_matrix, solution, system_rhs, preconditioner), solver_control.last_step(), lower[cycle], - lower[cycle] + 4); + lower[cycle] + 5); deallog.pop(); } diff --git a/tests/trilinos/precondition.output b/tests/trilinos/precondition.output index 8588ae8470..703ee62efa 100644 --- a/tests/trilinos/precondition.output +++ b/tests/trilinos/precondition.output @@ -16,7 +16,7 @@ DEAL:04225:SOR::Solver stopped within 62 - 64 iterations DEAL:04225:BlockJacobi::Solver stopped within 145 - 147 iterations DEAL:04225:BlockSSOR::Solver stopped within 59 - 61 iterations DEAL:04225:BlockSOR::Solver stopped within 37 - 39 iterations -DEAL:04225:IC::Solver stopped within 67 - 71 iterations +DEAL:04225:IC::Solver stopped within 67 - 72 iterations DEAL:04225:ILU::Solver stopped within 56 - 58 iterations DEAL:04225:ILUT::Solver stopped within 19 - 21 iterations DEAL:04225:Chebyshev::Solver stopped within 46 - 48 iterations -- 2.39.5