e^{\left(x \cdot y\right) \cdot y}e^{x \cdot {y}^{2}}double f(double x, double y) {
double r182488 = x;
double r182489 = y;
double r182490 = r182488 * r182489;
double r182491 = r182490 * r182489;
double r182492 = exp(r182491);
return r182492;
}
double f(double x, double y) {
double r182493 = x;
double r182494 = y;
double r182495 = 2.0;
double r182496 = pow(r182494, r182495);
double r182497 = r182493 * r182496;
double r182498 = exp(r182497);
return r182498;
}



Bits error versus x



Bits error versus y
Results
Initial program 0.0
rmApplied add-log-exp0.0
Simplified0.0
Final simplification0.0
herbie shell --seed 1978988140
(FPCore (x y)
:name "Data.Random.Distribution.Normal:normalF from random-fu-0.2.6.2"
:precision binary64
(exp (* (* x y) y)))