e^{\left(x \cdot y\right) \cdot y}\sqrt[3]{e^{\left(y \cdot \left(y \cdot x\right)\right) \cdot 3}}(FPCore (x y) :precision binary64 (exp (* (* x y) y)))
(FPCore (x y) :precision binary64 (cbrt (exp (* (* y (* y x)) 3.0))))
double code(double x, double y) {
return exp((x * y) * y);
}
double code(double x, double y) {
return cbrt(exp((y * (y * x)) * 3.0));
}



Bits error versus x



Bits error versus y
Results
Initial program 0.0
rmApplied add-cbrt-cube_binary640.1
Simplified0.1
rmApplied pow-exp_binary640.1
Simplified0.1
Final simplification0.1
herbie shell --seed 2020224
(FPCore (x y)
:name "Data.Random.Distribution.Normal:normalF from random-fu-0.2.6.2"
:precision binary64
(exp (* (* x y) y)))