e^{\left(x \cdot y\right) \cdot y}{\left({\left(e^{x \cdot {y}^{2}}\right)}^{3}\right)}^{\frac{1}{3}}double f(double x, double y) {
double r233807 = x;
double r233808 = y;
double r233809 = r233807 * r233808;
double r233810 = r233809 * r233808;
double r233811 = exp(r233810);
return r233811;
}
double f(double x, double y) {
double r233812 = x;
double r233813 = y;
double r233814 = 2.0;
double r233815 = pow(r233813, r233814);
double r233816 = r233812 * r233815;
double r233817 = exp(r233816);
double r233818 = 3.0;
double r233819 = pow(r233817, r233818);
double r233820 = 0.3333333333333333;
double r233821 = pow(r233819, r233820);
return r233821;
}



Bits error versus x



Bits error versus y
Results
Initial program 0.0
rmApplied add-cbrt-cube0.0
Simplified0.0
rmApplied pow1/30.0
Final simplification0.0
herbie shell --seed 2020065 +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)))