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



Bits error versus w



Bits error versus l
Results
Initial program 0.3
Applied add-cube-cbrt_binary640.3
Applied associate-*l*_binary640.3
Final simplification0.3
herbie shell --seed 2021329
(FPCore (w l)
:name "exp-w crasher"
:precision binary64
(* (exp (- w)) (pow l (exp w))))