x \cdot \left(y + y\right)
2 \cdot \left(x \cdot y\right)
double f(double x, double y) {
double r61714 = x;
double r61715 = y;
double r61716 = r61715 + r61715;
double r61717 = r61714 * r61716;
return r61717;
}
double f(double x, double y) {
double r61718 = 2.0;
double r61719 = x;
double r61720 = y;
double r61721 = r61719 * r61720;
double r61722 = r61718 * r61721;
return r61722;
}



Bits error versus x



Bits error versus y
Results
Initial program 0.0
rmApplied *-un-lft-identity0.0
Applied associate-*l*0.0
Simplified0.0
Final simplification0.0
herbie shell --seed 2019322
(FPCore (x y)
:name "Numeric.Integration.TanhSinh:simpson from integration-0.2.1"
:precision binary64
(* x (+ y y)))