e^{\left(x \cdot y\right) \cdot y}e^{\sqrt[3]{{\left(x \cdot {y}^{2}\right)}^{3}}}double f(double x, double y) {
double r200290 = x;
double r200291 = y;
double r200292 = r200290 * r200291;
double r200293 = r200292 * r200291;
double r200294 = exp(r200293);
return r200294;
}
double f(double x, double y) {
double r200295 = x;
double r200296 = y;
double r200297 = 2.0;
double r200298 = pow(r200296, r200297);
double r200299 = r200295 * r200298;
double r200300 = 3.0;
double r200301 = pow(r200299, r200300);
double r200302 = cbrt(r200301);
double r200303 = exp(r200302);
return r200303;
}



Bits error versus x



Bits error versus y
Results
Initial program 0.0
rmApplied add-cbrt-cube0.9
Applied add-cbrt-cube0.9
Applied add-cbrt-cube14.9
Applied cbrt-unprod14.9
Applied cbrt-unprod14.9
Simplified0.0
Final simplification0.0
herbie shell --seed 2019325
(FPCore (x y)
:name "Data.Random.Distribution.Normal:normalF from random-fu-0.2.6.2"
:precision binary64
(exp (* (* x y) y)))