From e8ef43a92b15dd9f09c983175fc1f70b283ad9fa Mon Sep 17 00:00:00 2001 From: Harry Moffat Date: Fri, 5 Sep 2003 16:57:34 +0000 Subject: [PATCH] loosened the tolerances on nil printing --- test_problems/diamondSurf/runDiamond.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_problems/diamondSurf/runDiamond.cpp b/test_problems/diamondSurf/runDiamond.cpp index d52f84005..888d6cfe5 100644 --- a/test_problems/diamondSurf/runDiamond.cpp +++ b/test_problems/diamondSurf/runDiamond.cpp @@ -41,7 +41,7 @@ static void printUsage() using namespace Cantera; void printDbl(double val) { - if (fabs(val) < 2.0E-17) { + if (fabs(val) < 5.0E-17) { cout << " nil"; } else { cout << val;