|
@@ -125,8 +125,10 @@ __ieee754_exp(double x)
|
|
|
if(x < u_threshold) return twom1000*twom1000;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
- unusually large, although still within 1 ulp. */
|
|
|
+
|
|
|
+ which is well within the allowable error. however,
|
|
|
+ 2.718281828459045 is closer to the true value so we prefer that
|
|
|
+ answer, given that 1.0 is such an important argument value. */
|
|
|
if (x == 1.0)
|
|
|
return 2.718281828459045235360;
|
|
|
|