\frac{x \cdot y}{2}x \cdot \frac{y}{2}double f(double x, double y) {
double r109054 = x;
double r109055 = y;
double r109056 = r109054 * r109055;
double r109057 = 2.0;
double r109058 = r109056 / r109057;
return r109058;
}
double f(double x, double y) {
double r109059 = x;
double r109060 = y;
double r109061 = 2.0;
double r109062 = r109060 / r109061;
double r109063 = r109059 * r109062;
return r109063;
}



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