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



Bits error versus w



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