e^{-w} \cdot {\ell}^{\left(e^{w}\right)}
\begin{array}{l}
t_0 := \sqrt{e^{-w}}\\
t_0 \cdot \left(t_0 \cdot {\ell}^{\left(e^{w}\right)}\right)
\end{array}
(FPCore (w l) :precision binary64 (* (exp (- w)) (pow l (exp w))))
(FPCore (w l) :precision binary64 (let* ((t_0 (sqrt (exp (- w))))) (* t_0 (* t_0 (pow l (exp w))))))
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 t_0 * (t_0 * pow(l, exp(w)));
}



Bits error versus w



Bits error versus l
Results
Initial program 0.2
rmApplied add-sqr-sqrt_binary640.3
Applied associate-*l*_binary640.2
Simplified0.2
rmApplied *-commutative_binary640.2
Final simplification0.2
herbie shell --seed 2021210
(FPCore (w l)
:name "exp-w crasher"
:precision binary64
(* (exp (- w)) (pow l (exp w))))