From: Guido Kanschat Date: Fri, 27 Apr 2001 09:35:59 +0000 (+0000) Subject: this is a thing for everybody! X-Git-Tag: v8.0.0~19291 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0cfe9d7326ca40b877a833bb90c077065ca2403d;p=dealii.git this is a thing for everybody! git-svn-id: https://svn.dealii.org/trunk@4497 0785d39b-7218-0410-832d-ea1e28bc413d --- 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