\left(x \cdot y + x\right) + y
\mathsf{fma}\left(y, x, x + y\right)double f(double x, double y) {
double r3890755 = x;
double r3890756 = y;
double r3890757 = r3890755 * r3890756;
double r3890758 = r3890757 + r3890755;
double r3890759 = r3890758 + r3890756;
return r3890759;
}
double f(double x, double y) {
double r3890760 = y;
double r3890761 = x;
double r3890762 = r3890761 + r3890760;
double r3890763 = fma(r3890760, r3890761, r3890762);
return r3890763;
}



Bits error versus x



Bits error versus y
Initial program 0.0
Simplified0.0
Taylor expanded around 0 0.0
Simplified0.0
Final simplification0.0
herbie shell --seed 2019163 +o rules:numerics
(FPCore (x y)
:name "Numeric.Log:$cexpm1 from log-domain-0.10.2.1, B"
(+ (+ (* x y) x) y))