Average Error: 0.0 → 0.0
Time: 6.7s
Precision: 64
\[x - \frac{y}{200}\]
\[x - \frac{y}{200}\]
x - \frac{y}{200}
x - \frac{y}{200}
double f(double x, double y) {
        double r11200680 = x;
        double r11200681 = y;
        double r11200682 = 200.0;
        double r11200683 = r11200681 / r11200682;
        double r11200684 = r11200680 - r11200683;
        return r11200684;
}

double f(double x, double y) {
        double r11200685 = x;
        double r11200686 = y;
        double r11200687 = 200.0;
        double r11200688 = r11200686 / r11200687;
        double r11200689 = r11200685 - r11200688;
        return r11200689;
}

Error

Bits error versus x

Bits error versus y

Try it out

Your Program's Arguments

Results

Enter valid numbers for all inputs

Derivation

  1. Initial program 0.0

    \[x - \frac{y}{200}\]
  2. Final simplification0.0

    \[\leadsto x - \frac{y}{200}\]

Reproduce

herbie shell --seed 2019174 +o rules:numerics
(FPCore (x y)
  :name "Data.Colour.CIE:cieLAB from colour-2.3.3, D"
  (- x (/ y 200.0)))