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 r296131 = x;
double r296132 = y;
double r296133 = r296131 * r296132;
double r296134 = r296133 * r296132;
double r296135 = exp(r296134);
return r296135;
}
double f(double x, double y) {
double r296136 = x;
double r296137 = y;
double r296138 = 2.0;
double r296139 = pow(r296137, r296138);
double r296140 = r296136 * r296139;
double r296141 = exp(r296140);
double r296142 = 3.0;
double r296143 = pow(r296141, r296142);
double r296144 = 0.3333333333333333;
double r296145 = pow(r296143, r296144);
return r296145;
}



Bits error versus x



Bits error versus y
Results
Initial program 0.0
rmApplied associate-*l*0.0
Simplified0.0
rmApplied add-cbrt-cube0.0
Simplified0.0
rmApplied pow1/30.0
Final simplification0.0
herbie shell --seed 2020042
(FPCore (x y)
:name "Data.Random.Distribution.Normal:normalF from random-fu-0.2.6.2"
:precision binary64
(exp (* (* x y) y)))