\left(x \cdot y + x\right) + y
x + \mathsf{fma}\left(x, y, y\right)double f(double x, double y) {
double r2392707 = x;
double r2392708 = y;
double r2392709 = r2392707 * r2392708;
double r2392710 = r2392709 + r2392707;
double r2392711 = r2392710 + r2392708;
return r2392711;
}
double f(double x, double y) {
double r2392712 = x;
double r2392713 = y;
double r2392714 = fma(r2392712, r2392713, r2392713);
double r2392715 = r2392712 + r2392714;
return r2392715;
}



Bits error versus x



Bits error versus y
Initial program 0.0
Simplified0.0
rmApplied fma-udef0.0
Applied associate-+r+0.0
Simplified0.0
Final simplification0.0
herbie shell --seed 2019156 +o rules:numerics
(FPCore (x y)
:name "Numeric.Log:$cexpm1 from log-domain-0.10.2.1, B"
(+ (+ (* x y) x) y))