e^{-w} \cdot {\ell}^{\left(e^{w}\right)}\left(\sqrt[3]{e^{-w}} \cdot \sqrt[3]{e^{-w}}\right) \cdot \left({\ell}^{\left(e^{w}\right)} \cdot \left(\sqrt[3]{\sqrt[3]{e^{-w}}} \cdot \left(\sqrt[3]{\sqrt[3]{e^{-w}}} \cdot \sqrt[3]{\sqrt[3]{e^{-w}}}\right)\right)\right)(FPCore (w l) :precision binary64 (* (exp (- w)) (pow l (exp w))))
(FPCore (w l)
:precision binary64
(*
(* (cbrt (exp (- w))) (cbrt (exp (- w))))
(*
(pow l (exp w))
(*
(cbrt (cbrt (exp (- w))))
(* (cbrt (cbrt (exp (- w)))) (cbrt (cbrt (exp (- w)))))))))double code(double w, double l) {
return exp(-w) * pow(l, exp(w));
}
double code(double w, double l) {
return (cbrt(exp(-w)) * cbrt(exp(-w))) * (pow(l, exp(w)) * (cbrt(cbrt(exp(-w))) * (cbrt(cbrt(exp(-w))) * cbrt(cbrt(exp(-w))))));
}



Bits error versus w



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