loosened the tolerances on nil printing

This commit is contained in:
Harry Moffat 2003-09-05 16:57:34 +00:00
parent 6f3fb26363
commit e8ef43a92b

View file

@ -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;