\left(x \cdot y + x\right) + y
\mathsf{fma}\left(x + 1, y, x\right)double f(double x, double y) {
double r77866 = x;
double r77867 = y;
double r77868 = r77866 * r77867;
double r77869 = r77868 + r77866;
double r77870 = r77869 + r77867;
return r77870;
}
double f(double x, double y) {
double r77871 = x;
double r77872 = 1.0;
double r77873 = r77871 + r77872;
double r77874 = y;
double r77875 = fma(r77873, r77874, r77871);
return r77875;
}



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