loosened the tolerances on nil printing
This commit is contained in:
parent
6f3fb26363
commit
e8ef43a92b
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue