Average Error: 0.0 → 0.0
Time: 11.6s
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 r11249043 = x;
        double r11249044 = y;
        double r11249045 = 200.0;
        double r11249046 = r11249044 / r11249045;
        double r11249047 = r11249043 - r11249046;
        return r11249047;
}

double f(double x, double y) {
        double r11249048 = x;
        double r11249049 = y;
        double r11249050 = 200.0;
        double r11249051 = r11249049 / r11249050;
        double r11249052 = r11249048 - r11249051;
        return r11249052;
}

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 2019179 +o rules:numerics
(FPCore (x y)
  :name "Data.Colour.CIE:cieLAB from colour-2.3.3, D"
  (- x (/ y 200.0)))