x \cdot e^{y \cdot y}\left(x \cdot {\left(\sqrt[3]{e^{y}} \cdot \sqrt[3]{e^{y}}\right)}^{y}\right) \cdot {\left(\sqrt[3]{e^{y}}\right)}^{y}double f(double x, double y) {
double r560466 = x;
double r560467 = y;
double r560468 = r560467 * r560467;
double r560469 = exp(r560468);
double r560470 = r560466 * r560469;
return r560470;
}
double f(double x, double y) {
double r560471 = x;
double r560472 = y;
double r560473 = exp(r560472);
double r560474 = cbrt(r560473);
double r560475 = r560474 * r560474;
double r560476 = pow(r560475, r560472);
double r560477 = r560471 * r560476;
double r560478 = pow(r560474, r560472);
double r560479 = r560477 * r560478;
return r560479;
}




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
rmApplied add-cube-cbrt0.0
Applied unpow-prod-down0.0
Applied associate-*r*0.0
Final simplification0.0
herbie shell --seed 2019209
(FPCore (x y)
:name "Data.Number.Erf:$dmerfcx from erf-2.0.0.0"
:precision binary64
:herbie-target
(* x (pow (exp y) y))
(* x (exp (* y y))))