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



Bits error versus w



Bits error versus l
Results
Initial program 0.3
Simplified0.3
Applied div-inv_binary640.3
Final simplification0.3
herbie shell --seed 2022068
(FPCore (w l)
:name "exp-w crasher"
:precision binary64
(* (exp (- w)) (pow l (exp w))))