\frac{x \cdot y}{2}x \cdot \frac{y}{2}double f(double x, double y) {
double r98927 = x;
double r98928 = y;
double r98929 = r98927 * r98928;
double r98930 = 2.0;
double r98931 = r98929 / r98930;
return r98931;
}
double f(double x, double y) {
double r98932 = x;
double r98933 = y;
double r98934 = 2.0;
double r98935 = r98933 / r98934;
double r98936 = r98932 * r98935;
return r98936;
}



Bits error versus x



Bits error versus y
Results
Initial program 0.0
rmApplied *-un-lft-identity0.0
Applied times-frac0.0
Simplified0.0
Final simplification0.0
herbie shell --seed 2019208 +o rules:numerics
(FPCore (x y)
:name "Numeric.Interval.Internal:scale from intervals-0.7.1, B"
:precision binary64
(/ (* x y) 2))