From: Guido Kanschat Date: Wed, 29 May 2002 11:09:28 +0000 (+0000) Subject: Assertions should NOT assess the numerical merit of a method! X-Git-Tag: v8.0.0~17982 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fed2f2e6a1e086582ac9002f93f89727e0ec6b59;p=dealii.git Assertions should NOT assess the numerical merit of a method! git-svn-id: https://svn.dealii.org/trunk@5925 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/include/lac/solver_gmres.h b/deal.II/lac/include/lac/solver_gmres.h index 9509af21e2..ed7ffeac6e 100644 --- a/deal.II/lac/include/lac/solver_gmres.h +++ b/deal.II/lac/include/lac/solver_gmres.h @@ -301,10 +301,7 @@ SolverGMRES::SolverGMRES (SolverControl &cn, const AdditionalData &data) : Solver (cn,mem), additional_data(data) -{ - Assert (additional_data.max_n_tmp_vectors >= 10, - ExcTooFewTmpVectors (additional_data.max_n_tmp_vectors)); -}; +{}; template