e^{\left(x \cdot y\right) \cdot y}e^{\left(x \cdot y\right) \cdot y}double f(double x, double y) {
double r8287040 = x;
double r8287041 = y;
double r8287042 = r8287040 * r8287041;
double r8287043 = r8287042 * r8287041;
double r8287044 = exp(r8287043);
return r8287044;
}
double f(double x, double y) {
double r8287045 = x;
double r8287046 = y;
double r8287047 = r8287045 * r8287046;
double r8287048 = r8287047 * r8287046;
double r8287049 = exp(r8287048);
return r8287049;
}



Bits error versus x



Bits error versus y
Results
Initial program 0.0
Final simplification0.0
herbie shell --seed 2019163 +o rules:numerics
(FPCore (x y)
:name "Data.Random.Distribution.Normal:normalF from random-fu-0.2.6.2"
(exp (* (* x y) y)))