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



Bits error versus w



Bits error versus l
Results
Initial program 0.3
rmApplied add-sqr-sqrt_binary640.3
Applied pow-unpow_binary640.3
rmApplied add-cube-cbrt_binary640.3
Applied exp-prod_binary640.3
Applied sqrt-pow1_binary640.3
Final simplification0.3
herbie shell --seed 2020231
(FPCore (w l)
:name "exp-w crasher"
:precision binary64
(* (exp (- w)) (pow l (exp w))))