e^{\left(x \cdot y\right) \cdot y}e^{\left(y \cdot x\right) \cdot y}double f(double x, double y) {
double r5292063 = x;
double r5292064 = y;
double r5292065 = r5292063 * r5292064;
double r5292066 = r5292065 * r5292064;
double r5292067 = exp(r5292066);
return r5292067;
}
double f(double x, double y) {
double r5292068 = y;
double r5292069 = x;
double r5292070 = r5292068 * r5292069;
double r5292071 = r5292070 * r5292068;
double r5292072 = exp(r5292071);
return r5292072;
}



Bits error versus x



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