\left(x \cdot y + x\right) + y
\mathsf{fma}\left(y, x, y\right) + xdouble f(double x, double y) {
double r103429 = x;
double r103430 = y;
double r103431 = r103429 * r103430;
double r103432 = r103431 + r103429;
double r103433 = r103432 + r103430;
return r103433;
}
double f(double x, double y) {
double r103434 = y;
double r103435 = x;
double r103436 = fma(r103434, r103435, r103434);
double r103437 = r103436 + r103435;
return r103437;
}



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