e^{-w} \cdot {\ell}^{\left(e^{w}\right)}\left(\sqrt[3]{e^{-w}} \cdot \left(\sqrt[3]{\sqrt{e^{-w}}} \cdot \sqrt[3]{\sqrt{e^{-w}}}\right)\right) \cdot \left(\left(\sqrt[3]{\sqrt{e^{-w}}} \cdot \sqrt[3]{\sqrt{e^{-w}}}\right) \cdot {\ell}^{\left(e^{w}\right)}\right)(FPCore (w l) :precision binary64 (* (exp (- w)) (pow l (exp w))))
(FPCore (w l) :precision binary64 (* (* (cbrt (exp (- w))) (* (cbrt (sqrt (exp (- w)))) (cbrt (sqrt (exp (- w)))))) (* (* (cbrt (sqrt (exp (- w)))) (cbrt (sqrt (exp (- w))))) (pow l (exp w)))))
double code(double w, double l) {
return exp(-w) * pow(l, exp(w));
}
double code(double w, double l) {
return (cbrt(exp(-w)) * (cbrt(sqrt(exp(-w))) * cbrt(sqrt(exp(-w))))) * ((cbrt(sqrt(exp(-w))) * cbrt(sqrt(exp(-w)))) * pow(l, exp(w)));
}



Bits error versus w



Bits error versus l
Results
Initial program 0.3
rmApplied add-cube-cbrt_binary64_8020.3
Applied associate-*l*_binary64_7080.3
Simplified0.3
rmApplied add-sqr-sqrt_binary64_7890.3
Applied cbrt-prod_binary64_7980.3
rmApplied add-sqr-sqrt_binary64_7890.3
Applied cbrt-prod_binary64_7980.3
Final simplification0.3
herbie shell --seed 2020292
(FPCore (w l)
:name "exp-w crasher"
:precision binary64
(* (exp (- w)) (pow l (exp w))))