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









Bits error versus w









Bits error versus l
Results
| Alternative 1 | |
|---|---|
| Error | 0.2 |
| Cost | 19456 |
| Alternative 2 | |
|---|---|
| Error | 1.3 |
| Cost | 13440 |
| Alternative 3 | |
|---|---|
| Error | 1.6 |
| Cost | 6656 |
| Alternative 4 | |
|---|---|
| Error | 1.5 |
| Cost | 385 |
| Alternative 5 | |
|---|---|
| Error | 49.4 |
| Cost | 64 |
| Alternative 6 | |
|---|---|
| Error | 60.8 |
| Cost | 64 |

Initial program 0.2
Simplified0.2
Final simplification0.2
herbie shell --seed 2021044
(FPCore (w l)
:name "exp-w crasher"
:precision binary64
(* (exp (- w)) (pow l (exp w))))