200 \cdot \left(x - y\right)
\mathsf{fma}\left(x, 200, \left(-y\right) \cdot 200\right)double f(double x, double y) {
double r283628 = 200.0;
double r283629 = x;
double r283630 = y;
double r283631 = r283629 - r283630;
double r283632 = r283628 * r283631;
return r283632;
}
double f(double x, double y) {
double r283633 = x;
double r283634 = 200.0;
double r283635 = y;
double r283636 = -r283635;
double r283637 = r283636 * r283634;
double r283638 = fma(r283633, r283634, r283637);
return r283638;
}



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)))