Average Error: 0.0 → 0.0
Time: 5.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 r205458 = x;
        double r205459 = y;
        double r205460 = 200.0;
        double r205461 = r205459 / r205460;
        double r205462 = r205458 - r205461;
        return r205462;
}

double f(double x, double y) {
        double r205463 = x;
        double r205464 = y;
        double r205465 = 200.0;
        double r205466 = r205464 / r205465;
        double r205467 = r205463 - r205466;
        return r205467;
}

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