\left(x \cdot x + y\right) + y
{x}^{2} + 2 \cdot ydouble f(double x, double y) {
double r449490 = x;
double r449491 = r449490 * r449490;
double r449492 = y;
double r449493 = r449491 + r449492;
double r449494 = r449493 + r449492;
return r449494;
}
double f(double x, double y) {
double r449495 = x;
double r449496 = 2.0;
double r449497 = pow(r449495, r449496);
double r449498 = y;
double r449499 = r449496 * r449498;
double r449500 = r449497 + r449499;
return r449500;
}




Bits error versus x




Bits error versus y
Results
| Original | 0.0 |
|---|---|
| Target | 0.0 |
| Herbie | 0.0 |
Initial program 0.0
rmApplied *-un-lft-identity0.0
Applied *-un-lft-identity0.0
Applied distribute-lft-out0.0
Simplified0.0
Final simplification0.0
herbie shell --seed 2019323
(FPCore (x y)
:name "Data.Random.Distribution.Normal:normalTail from random-fu-0.2.6.2"
:precision binary64
:herbie-target
(+ (+ y y) (* x x))
(+ (+ (* x x) y) y))