e^{\left(x \cdot y\right) \cdot y}e^{x \cdot {y}^{2}}double f(double x, double y) {
double r241893 = x;
double r241894 = y;
double r241895 = r241893 * r241894;
double r241896 = r241895 * r241894;
double r241897 = exp(r241896);
return r241897;
}
double f(double x, double y) {
double r241898 = x;
double r241899 = y;
double r241900 = 2.0;
double r241901 = pow(r241899, r241900);
double r241902 = r241898 * r241901;
double r241903 = exp(r241902);
return r241903;
}



Bits error versus x



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