e^{\left(x \cdot y\right) \cdot y}e^{\sqrt[3]{{\left(\left(x \cdot y\right) \cdot y\right)}^{3}}}double f(double x, double y) {
double r219434 = x;
double r219435 = y;
double r219436 = r219434 * r219435;
double r219437 = r219436 * r219435;
double r219438 = exp(r219437);
return r219438;
}
double f(double x, double y) {
double r219439 = x;
double r219440 = y;
double r219441 = r219439 * r219440;
double r219442 = r219441 * r219440;
double r219443 = 3.0;
double r219444 = pow(r219442, r219443);
double r219445 = cbrt(r219444);
double r219446 = exp(r219445);
return r219446;
}



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.7
Applied cbrt-unprod14.7
Applied cbrt-unprod14.7
Simplified0.0
Final simplification0.0
herbie shell --seed 2019354 +o rules:numerics
(FPCore (x y)
:name "Data.Random.Distribution.Normal:normalF from random-fu-0.2.6.2"
:precision binary64
(exp (* (* x y) y)))