From 53ec0626d4cb9e80f2eea693e7bd8ce9e45e7bf2 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Wed, 19 Apr 2000 13:30:27 +0000 Subject: [PATCH] Replace long double variables by double. git-svn-id: https://svn.dealii.org/trunk@2755 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/solver_cg.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_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. */ -- 2.39.5