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 r121843 = x;
double r121844 = y;
double r121845 = r121843 * r121844;
double r121846 = r121845 * r121844;
double r121847 = exp(r121846);
return r121847;
}
double f(double x, double y) {
double r121848 = x;
double r121849 = y;
double r121850 = 2.0;
double r121851 = pow(r121849, r121850);
double r121852 = r121848 * r121851;
double r121853 = 3.0;
double r121854 = pow(r121852, r121853);
double r121855 = cbrt(r121854);
double r121856 = exp(r121855);
return r121856;
}



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