x \cdot e^{y \cdot y}{\left(e^{y}\right)}^{y} \cdot xdouble f(double x, double y) {
double r513329 = x;
double r513330 = y;
double r513331 = r513330 * r513330;
double r513332 = exp(r513331);
double r513333 = r513329 * r513332;
return r513333;
}
double f(double x, double y) {
double r513334 = y;
double r513335 = exp(r513334);
double r513336 = pow(r513335, r513334);
double r513337 = x;
double r513338 = r513336 * r513337;
return r513338;
}




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 2019196
(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))))