\left(x \cdot y + x\right) + y
x + \mathsf{fma}\left(x, y, y\right)double f(double x, double y) {
double r4366908 = x;
double r4366909 = y;
double r4366910 = r4366908 * r4366909;
double r4366911 = r4366910 + r4366908;
double r4366912 = r4366911 + r4366909;
return r4366912;
}
double f(double x, double y) {
double r4366913 = x;
double r4366914 = y;
double r4366915 = fma(r4366913, r4366914, r4366914);
double r4366916 = r4366913 + r4366915;
return r4366916;
}



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