From abd2bcc3baa43fb4da88ab1876d6a01e059297cb Mon Sep 17 00:00:00 2001 From: hartmann Date: Fri, 13 Feb 2004 07:19:03 +0000 Subject: [PATCH] Add some missing std:: git-svn-id: https://svn.dealii.org/trunk@8463 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/eigen.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deal.II/lac/include/lac/eigen.h b/deal.II/lac/include/lac/eigen.h index 49cc34c962..a8e9c75b58 100644 --- a/deal.II/lac/include/lac/eigen.h +++ b/deal.II/lac/include/lac/eigen.h @@ -289,7 +289,7 @@ EigenPower::solve (double &value, // Check the change of the eigenvalue // Brrr, this is not really a good criterion - conv = this->control().check (iter, fabs(1./length-1./old_length)); + conv = this->control().check (iter, std::fabs(1./length-1./old_length)); } this->memory.free(Vy); @@ -405,7 +405,7 @@ EigenInverse::solve (double &value, // Check the residual conv = this->control().check (iter, res); } else { - conv = this->control().check (iter, fabs(1./value-1./old_value)); + conv = this->control().check (iter, std::fabs(1./value-1./old_value)); } old_value = value; } -- 2.39.5