\left(x \cdot y + x\right) + y
\mathsf{fma}\left(x, y, x + y\right)double f(double x, double y) {
double r76178 = x;
double r76179 = y;
double r76180 = r76178 * r76179;
double r76181 = r76180 + r76178;
double r76182 = r76181 + r76179;
return r76182;
}
double f(double x, double y) {
double r76183 = x;
double r76184 = y;
double r76185 = r76183 + r76184;
double r76186 = fma(r76183, r76184, r76185);
return r76186;
}



Bits error versus x



Bits error versus y
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 2019305 +o rules:numerics
(FPCore (x y)
:name "Numeric.Log:$cexpm1 from log-domain-0.10.2.1, B"
:precision binary64
(+ (+ (* x y) x) y))