\left(x \cdot y + x\right) + y
x + \left(1 + x\right) \cdot y
double f(double x, double y) {
double r63794 = x;
double r63795 = y;
double r63796 = r63794 * r63795;
double r63797 = r63796 + r63794;
double r63798 = r63797 + r63795;
return r63798;
}
double f(double x, double y) {
double r63799 = x;
double r63800 = 1.0;
double r63801 = r63800 + r63799;
double r63802 = y;
double r63803 = r63801 * r63802;
double r63804 = r63799 + r63803;
return r63804;
}



Bits error versus x



Bits error versus y
Results
Initial program 0.0
rmApplied *-un-lft-identity0.0
Applied *-un-lft-identity0.0
Applied distribute-lft-out0.0
Simplified0.0
rmApplied distribute-rgt1-in0.0
Simplified0.0
Final simplification0.0
herbie shell --seed 2019305
(FPCore (x y)
:name "Numeric.Log:$cexpm1 from log-domain-0.10.2.1, B"
:precision binary64
(+ (+ (* x y) x) y))