x \cdot e^{y \cdot y}{\left(e^{y}\right)}^{y} \cdot xdouble f(double x, double y) {
double r687654 = x;
double r687655 = y;
double r687656 = r687655 * r687655;
double r687657 = exp(r687656);
double r687658 = r687654 * r687657;
return r687658;
}
double f(double x, double y) {
double r687659 = y;
double r687660 = exp(r687659);
double r687661 = pow(r687660, r687659);
double r687662 = x;
double r687663 = r687661 * r687662;
return r687663;
}




Bits error versus x




Bits error versus y
Results
| Original | 0.0 |
|---|---|
| Target | 0.0 |
| Herbie | 0.0 |
Initial program 0.0
Simplified0.0
Final simplification0.0
herbie shell --seed 2019194
(FPCore (x y)
:name "Data.Number.Erf:$dmerfcx from erf-2.0.0.0"
:herbie-target
(* x (pow (exp y) y))
(* x (exp (* y y))))