200 \cdot \left(x - y\right)
\mathsf{fma}\left(x, 200, \left(-y\right) \cdot 200\right)double f(double x, double y) {
double r175336 = 200.0;
double r175337 = x;
double r175338 = y;
double r175339 = r175337 - r175338;
double r175340 = r175336 * r175339;
return r175340;
}
double f(double x, double y) {
double r175341 = x;
double r175342 = 200.0;
double r175343 = y;
double r175344 = -r175343;
double r175345 = r175344 * r175342;
double r175346 = fma(r175341, r175342, r175345);
return r175346;
}



Bits error versus x



Bits error versus y
Initial program 0.0
rmApplied sub-neg0.0
Applied distribute-lft-in0.0
Simplified0.0
Simplified0.0
rmApplied fma-def0.0
Final simplification0.0
herbie shell --seed 2020047 +o rules:numerics
(FPCore (x y)
:name "Data.Colour.CIE:cieLABView from colour-2.3.3, C"
:precision binary64
(* 200 (- x y)))