ifeval.c: reduce fudge factor for div and atanh

This commit is contained in:
h_vogt 2012-09-26 21:00:40 +02:00
parent 0bdc33db40
commit e096101133
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ PTeval(INPparseNode * tree, double gmin, double *res, double *vals)
double r1, r2;
int err;
PTfudge_factor = gmin;
PTfudge_factor = gmin * 1.0e-20; /* defaults to 1e-32, should be small enough */
switch (tree->type) {
case PT_CONSTANT:
*res = tree->constant;