From 0cfe9d7326ca40b877a833bb90c077065ca2403d Mon Sep 17 00:00:00 2001 From: Guido Kanschat Date: Fri, 27 Apr 2001 09:35:59 +0000 Subject: [PATCH] this is a thing for everybody! git-svn-id: https://svn.dealii.org/trunk@4497 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/solver_bicgstab.h | 2 +- deal.II/lac/include/lac/solver_qmrs.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/deal.II/lac/include/lac/solver_bicgstab.h b/deal.II/lac/include/lac/solver_bicgstab.h index 9ecaee3433..a64e5e4952 100644 --- a/deal.II/lac/include/lac/solver_bicgstab.h +++ b/deal.II/lac/include/lac/solver_bicgstab.h @@ -309,7 +309,7 @@ SolverBicgstab::iterate(const MATRIX& A, alpha = rho/rhobar; -//TODO:[GK] Find better breakdown criterion +//TODO:[?] Find better breakdown criterion if (fabs(alpha) > 1.e10) return true; diff --git a/deal.II/lac/include/lac/solver_qmrs.h b/deal.II/lac/include/lac/solver_qmrs.h index dac847778b..b4c8788594 100644 --- a/deal.II/lac/include/lac/solver_qmrs.h +++ b/deal.II/lac/include/lac/solver_qmrs.h @@ -332,7 +332,7 @@ while (state == SolverControl::iterate) // Step 2 sigma = q*t; -//TODO:[GK] Find a really good breakdown criterion. The absolute one detects breakdown instead of convergence +//TODO:[?] Find a really good breakdown criterion. The absolute one detects breakdown instead of convergence if (fabs(sigma/rho) < additional_data.breakdown) return true; // Step 3 -- 2.39.5