\frac{x \cdot y}{2}x \cdot \frac{y}{2}double f(double x, double y) {
double r99787 = x;
double r99788 = y;
double r99789 = r99787 * r99788;
double r99790 = 2.0;
double r99791 = r99789 / r99790;
return r99791;
}
double f(double x, double y) {
double r99792 = x;
double r99793 = y;
double r99794 = 2.0;
double r99795 = r99793 / r99794;
double r99796 = r99792 * r99795;
return r99796;
}



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