\frac{x \cdot y}{2}x \cdot \frac{y}{2}double f(double x, double y) {
double r121444 = x;
double r121445 = y;
double r121446 = r121444 * r121445;
double r121447 = 2.0;
double r121448 = r121446 / r121447;
return r121448;
}
double f(double x, double y) {
double r121449 = x;
double r121450 = y;
double r121451 = 2.0;
double r121452 = r121450 / r121451;
double r121453 = r121449 * r121452;
return r121453;
}



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 2020064 +o rules:numerics
(FPCore (x y)
:name "Numeric.Interval.Internal:scale from intervals-0.7.1, B"
:precision binary64
(/ (* x y) 2))