x \cdot e^{y \cdot y}{\left(e^{y}\right)}^{y} \cdot xdouble f(double x, double y) {
double r39727355 = x;
double r39727356 = y;
double r39727357 = r39727356 * r39727356;
double r39727358 = exp(r39727357);
double r39727359 = r39727355 * r39727358;
return r39727359;
}
double f(double x, double y) {
double r39727360 = y;
double r39727361 = exp(r39727360);
double r39727362 = pow(r39727361, r39727360);
double r39727363 = x;
double r39727364 = r39727362 * r39727363;
return r39727364;
}




Bits error versus x




Bits error versus y
Results
| Original | 0.0 |
|---|---|
| Target | 0.0 |
| Herbie | 0.0 |
Initial program 0.0
rmApplied add-log-exp0.0
Applied exp-to-pow0.0
Final simplification0.0
herbie shell --seed 2019163
(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))))