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



Bits error versus w



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