From e0961011337a77756dae52888db9247185e00dd3 Mon Sep 17 00:00:00 2001 From: h_vogt Date: Wed, 26 Sep 2012 21:00:40 +0200 Subject: [PATCH] ifeval.c: reduce fudge factor for div and atanh --- src/spicelib/parser/ifeval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/spicelib/parser/ifeval.c b/src/spicelib/parser/ifeval.c index adba91e4e..eab1a9895 100644 --- a/src/spicelib/parser/ifeval.c +++ b/src/spicelib/parser/ifeval.c @@ -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;