e^{-\left(1 - x \cdot x\right)}e^{x \cdot x - 1}double f(double x) {
double r39370 = 1.0;
double r39371 = x;
double r39372 = r39371 * r39371;
double r39373 = r39370 - r39372;
double r39374 = -r39373;
double r39375 = exp(r39374);
return r39375;
}
double f(double x) {
double r39376 = x;
double r39377 = r39376 * r39376;
double r39378 = 1.0;
double r39379 = r39377 - r39378;
double r39380 = exp(r39379);
return r39380;
}



Bits error versus x
Results
Initial program 0.0
rmApplied sub-neg0.0
Applied distribute-neg-in0.0
Applied exp-sum0.0
Simplified0.0
rmApplied *-un-lft-identity0.0
Applied associate-*l*0.0
Simplified0.0
Final simplification0.0
herbie shell --seed 2019174
(FPCore (x)
:name "exp neg sub"
(exp (- (- 1.0 (* x x)))))