x \cdot e^{y \cdot y}\left(x \cdot {\left(e^{\frac{2}{3} \cdot y}\right)}^{y}\right) \cdot {\left(\sqrt[3]{e^{y}}\right)}^{y}double f(double x, double y) {
double r553623 = x;
double r553624 = y;
double r553625 = r553624 * r553624;
double r553626 = exp(r553625);
double r553627 = r553623 * r553626;
return r553627;
}
double f(double x, double y) {
double r553628 = x;
double r553629 = 0.6666666666666666;
double r553630 = y;
double r553631 = r553629 * r553630;
double r553632 = exp(r553631);
double r553633 = pow(r553632, r553630);
double r553634 = r553628 * r553633;
double r553635 = exp(r553630);
double r553636 = cbrt(r553635);
double r553637 = pow(r553636, r553630);
double r553638 = r553634 * r553637;
return r553638;
}




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
rmApplied add-exp-log0.0
Applied add-exp-log0.0
Applied prod-exp0.0
Simplified0.0
Final simplification0.0
herbie shell --seed 1978988140
(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))))