From a361eed906707fe3f04c8c0593417d18c8bd03a9 Mon Sep 17 00:00:00 2001 From: David Wells Date: Wed, 17 Aug 2016 23:05:17 -0400 Subject: [PATCH] Correctly increment a step counter. This was caught by cppcheck. --- include/deal.II/lac/solver_bicgstab.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/deal.II/lac/solver_bicgstab.h b/include/deal.II/lac/solver_bicgstab.h index 7b097ebb25..da2141f852 100644 --- a/include/deal.II/lac/solver_bicgstab.h +++ b/include/deal.II/lac/solver_bicgstab.h @@ -475,6 +475,7 @@ SolverBicgstab::solve(const MatrixType &A, break; } state = iterate(A, precondition); + ++step; } while (state.breakdown == true); -- 2.39.5