Average Error: 0.0 → 0.0
Time: 10.4s
Precision: 64
\[200 \cdot \left(x - y\right)\]
\[200 \cdot \left(x - y\right)\]
200 \cdot \left(x - y\right)
200 \cdot \left(x - y\right)
double f(double x, double y) {
        double r33804 = 200.0;
        double r33805 = x;
        double r33806 = y;
        double r33807 = r33805 - r33806;
        double r33808 = r33804 * r33807;
        return r33808;
}

double f(double x, double y) {
        double r33809 = 200.0;
        double r33810 = x;
        double r33811 = y;
        double r33812 = r33810 - r33811;
        double r33813 = r33809 * r33812;
        return r33813;
}

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

    \[200 \cdot \left(x - y\right)\]
  2. Final simplification0.0

    \[\leadsto 200 \cdot \left(x - y\right)\]

Reproduce

herbie shell --seed 2019310 
(FPCore (x y)
  :name "Data.Colour.CIE:cieLABView from colour-2.3.3, C"
  :precision binary64
  (* 200 (- x y)))