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 r124761 = x;
double r124762 = y;
double r124763 = r124761 * r124762;
double r124764 = r124763 * r124762;
double r124765 = exp(r124764);
return r124765;
}
double f(double x, double y) {
double r124766 = x;
double r124767 = y;
double r124768 = 2.0;
double r124769 = pow(r124767, r124768);
double r124770 = r124766 * r124769;
double r124771 = 3.0;
double r124772 = pow(r124770, r124771);
double r124773 = cbrt(r124772);
double r124774 = exp(r124773);
return r124774;
}



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 +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)))