e^{-w} \cdot {\ell}^{\left(e^{w}\right)}\frac{\sqrt[3]{1} \cdot \sqrt[3]{1}}{\sqrt[3]{e^{w}} \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)} \cdot \left({\ell}^{\left(e^{w}\right)} \cdot \sqrt[3]{e^{-w}}\right)(FPCore (w l) :precision binary64 (* (exp (- w)) (pow l (exp w))))
(FPCore (w l)
:precision binary64
(*
(/
(* (cbrt 1.0) (cbrt 1.0))
(*
(cbrt (exp w))
(* (cbrt (cbrt (exp w))) (* (cbrt (cbrt (exp w))) (cbrt (cbrt (exp w)))))))
(* (pow l (exp w)) (cbrt (exp (- w))))))double code(double w, double l) {
return exp(-w) * pow(l, exp(w));
}
double code(double w, double l) {
return ((cbrt(1.0) * cbrt(1.0)) / (cbrt(exp(w)) * (cbrt(cbrt(exp(w))) * (cbrt(cbrt(exp(w))) * cbrt(cbrt(exp(w))))))) * (pow(l, exp(w)) * cbrt(exp(-w)));
}



Bits error versus w



Bits error versus l
Results
Initial program 0.3
rmApplied add-cube-cbrt_binary64_7950.3
Applied associate-*l*_binary64_7010.3
Simplified0.3
rmApplied neg-sub0_binary64_7550.3
Applied exp-diff_binary64_8080.3
Applied cbrt-div_binary64_7920.3
Applied neg-sub0_binary64_7550.3
Applied exp-diff_binary64_8080.3
Applied cbrt-div_binary64_7920.3
Applied frac-times_binary64_7700.3
Simplified0.3
rmApplied add-cube-cbrt_binary64_7950.3
Final simplification0.3
herbie shell --seed 2020295
(FPCore (w l)
:name "exp-w crasher"
:precision binary64
(* (exp (- w)) (pow l (exp w))))