e^{\left(x \cdot y\right) \cdot y}e^{\left(x \cdot y\right) \cdot y}double f(double x, double y) {
double r9769841 = x;
double r9769842 = y;
double r9769843 = r9769841 * r9769842;
double r9769844 = r9769843 * r9769842;
double r9769845 = exp(r9769844);
return r9769845;
}
double f(double x, double y) {
double r9769846 = x;
double r9769847 = y;
double r9769848 = r9769846 * r9769847;
double r9769849 = r9769848 * r9769847;
double r9769850 = exp(r9769849);
return r9769850;
}



Bits error versus x



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