e^{-w} \cdot {\ell}^{\left(e^{w}\right)}
\begin{array}{l}
t_0 := \sqrt{e^{w}}\\
e^{-w} \cdot {\left({\ell}^{t_0}\right)}^{t_0}
\end{array}
(FPCore (w l) :precision binary64 (* (exp (- w)) (pow l (exp w))))
(FPCore (w l) :precision binary64 (let* ((t_0 (sqrt (exp w)))) (* (exp (- w)) (pow (pow l t_0) t_0))))
double code(double w, double l) {
return exp(-w) * pow(l, exp(w));
}
double code(double w, double l) {
double t_0 = sqrt(exp(w));
return exp(-w) * pow(pow(l, t_0), t_0);
}



Bits error versus w



Bits error versus l
Results
Initial program 0.3
Applied add-sqr-sqrt_binary640.4
Applied pow-unpow_binary640.4
Applied pow1_binary640.4
Applied pow-pow_binary640.4
Final simplification0.4
herbie shell --seed 2022088
(FPCore (w l)
:name "exp-w crasher"
:precision binary64
(* (exp (- w)) (pow l (exp w))))