x \cdot y - x
x \cdot \left(y - 1\right)
double f(double x, double y) {
double r304975 = x;
double r304976 = y;
double r304977 = r304975 * r304976;
double r304978 = r304977 - r304975;
return r304978;
}
double f(double x, double y) {
double r304979 = x;
double r304980 = y;
double r304981 = 1.0;
double r304982 = r304980 - r304981;
double r304983 = r304979 * r304982;
return r304983;
}



Bits error versus x



Bits error versus y
Results
Initial program 0.0
rmApplied flip--28.1
Simplified30.7
rmApplied *-un-lft-identity30.7
Applied times-frac9.7
Simplified9.7
Taylor expanded around 0 0.0
Final simplification0.0
herbie shell --seed 2020003
(FPCore (x y)
:name "Data.Histogram.Bin.LogBinD:$cbinSizeN from histogram-fill-0.8.4.1"
:precision binary64
(- (* x y) x))