e^{-w} \cdot {\ell}^{\left(e^{w}\right)}\left(\left(\sqrt[3]{\sqrt{e^{-w}}} \cdot \sqrt{\sqrt[3]{e^{-w}}}\right) \cdot \left(\sqrt[3]{\sqrt{e^{-w}}} \cdot \sqrt{\sqrt[3]{e^{-w}}}\right)\right) \cdot \left(\sqrt[3]{e^{-w}} \cdot {\ell}^{\left(e^{w}\right)}\right)(FPCore (w l) :precision binary64 (* (exp (- w)) (pow l (exp w))))
(FPCore (w l) :precision binary64 (* (* (* (cbrt (sqrt (exp (- w)))) (sqrt (cbrt (exp (- w))))) (* (cbrt (sqrt (exp (- w)))) (sqrt (cbrt (exp (- w)))))) (* (cbrt (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(sqrt(exp(-w))) * sqrt(cbrt(exp(-w)))) * (cbrt(sqrt(exp(-w))) * sqrt(cbrt(exp(-w))))) * (cbrt(exp(-w)) * pow(l, exp(w)));
}



Bits error versus w



Bits error versus l
Results
Initial program 0.3
rmApplied add-cube-cbrt_binary64_7950.3
Applied associate-*l*_binary64_7010.3
Simplified0.3
rmApplied add-sqr-sqrt_binary64_7820.3
Applied add-sqr-sqrt_binary64_7820.3
Applied cbrt-prod_binary64_7910.3
Applied unswap-sqr_binary64_7280.3
Final simplification0.3
herbie shell --seed 2021015
(FPCore (w l)
:name "exp-w crasher"
:precision binary64
(* (exp (- w)) (pow l (exp w))))