\frac{x \cdot y}{2}x \cdot \frac{y}{2}double f(double x, double y) {
double r78578 = x;
double r78579 = y;
double r78580 = r78578 * r78579;
double r78581 = 2.0;
double r78582 = r78580 / r78581;
return r78582;
}
double f(double x, double y) {
double r78583 = x;
double r78584 = y;
double r78585 = 2.0;
double r78586 = r78584 / r78585;
double r78587 = r78583 * r78586;
return r78587;
}



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