e^{\left(x \cdot y\right) \cdot y}e^{x \cdot {y}^{2}}double f(double x, double y) {
double r259289 = x;
double r259290 = y;
double r259291 = r259289 * r259290;
double r259292 = r259291 * r259290;
double r259293 = exp(r259292);
return r259293;
}
double f(double x, double y) {
double r259294 = x;
double r259295 = y;
double r259296 = 2.0;
double r259297 = pow(r259295, r259296);
double r259298 = r259294 * r259297;
double r259299 = exp(r259298);
return r259299;
}



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 2020001
(FPCore (x y)
:name "Data.Random.Distribution.Normal:normalF from random-fu-0.2.6.2"
:precision binary64
(exp (* (* x y) y)))