\left(x \cdot y + x\right) + y
\mathsf{fma}\left(x + 1, y, x\right)double f(double x, double y) {
double r110702 = x;
double r110703 = y;
double r110704 = r110702 * r110703;
double r110705 = r110704 + r110702;
double r110706 = r110705 + r110703;
return r110706;
}
double f(double x, double y) {
double r110707 = x;
double r110708 = 1.0;
double r110709 = r110707 + r110708;
double r110710 = y;
double r110711 = fma(r110709, r110710, r110707);
return r110711;
}



Bits error versus x



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