From: Wolfgang Bangerth Date: Wed, 19 Apr 2000 13:30:27 +0000 (+0000) Subject: Replace long double variables by double. X-Git-Tag: v8.0.0~20644 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=53ec0626d4cb9e80f2eea693e7bd8ce9e45e7bf2;p=dealii.git Replace long double variables by double. git-svn-id: https://svn.dealii.org/trunk@2755 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/include/lac/solver_cg.h b/deal.II/lac/include/lac/solver_cg.h index 687ce5696f..5a30403b45 100644 --- a/deal.II/lac/include/lac/solver_cg.h +++ b/deal.II/lac/include/lac/solver_cg.h @@ -195,7 +195,7 @@ SolverCG::solve (const Matrix &A, // Implementation taken from the DEAL // library int it=0; - long double res,gh,alpha,beta; + double res,gh,alpha,beta; res = A.residual(g,x,b); conv = control().check(0,res); diff --git a/deal.II/lac/include/lac/solver_qmrs.h b/deal.II/lac/include/lac/solver_qmrs.h index 66b92cba9f..e41631fdd7 100644 --- a/deal.II/lac/include/lac/solver_qmrs.h +++ b/deal.II/lac/include/lac/solver_qmrs.h @@ -163,7 +163,7 @@ class SolverQMRS : public Solver * norm of the residual vector and thus * the square root of the #res2# value. */ - long double res2; + double res2; /** * Breakdown threshold. */