From: wolf Date: Wed, 19 Apr 2000 13:30:27 +0000 (+0000) Subject: Replace long double variables by double. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=05547648e453aa3d555627de524f53fb90e48182;p=dealii-svn.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. */