x \cdot e^{y \cdot y}x \cdot \left({\left(e^{y}\right)}^{\left(\frac{y}{2}\right)} \cdot {\left(e^{y}\right)}^{\left(\frac{y}{2}\right)}\right)double f(double x, double y) {
double r832144 = x;
double r832145 = y;
double r832146 = r832145 * r832145;
double r832147 = exp(r832146);
double r832148 = r832144 * r832147;
return r832148;
}
double f(double x, double y) {
double r832149 = x;
double r832150 = y;
double r832151 = exp(r832150);
double r832152 = 2.0;
double r832153 = r832150 / r832152;
double r832154 = pow(r832151, r832153);
double r832155 = r832154 * r832154;
double r832156 = r832149 * r832155;
return r832156;
}




Bits error versus x




Bits error versus y
Results
| Original | 0.0 |
|---|---|
| Target | 0.0 |
| Herbie | 0.0 |
Initial program 0.0
rmApplied add-sqr-sqrt0.0
Simplified0.0
Simplified0.0
Final simplification0.0
herbie shell --seed 2020001
(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))))