Average Error: 0.0 → 0.0
Time: 10.6s
Precision: 64
\[200.0 \cdot \left(x - y\right)\]
\[\left(x - y\right) \cdot 200.0\]
200.0 \cdot \left(x - y\right)
\left(x - y\right) \cdot 200.0
double f(double x, double y) {
        double r13205696 = 200.0;
        double r13205697 = x;
        double r13205698 = y;
        double r13205699 = r13205697 - r13205698;
        double r13205700 = r13205696 * r13205699;
        return r13205700;
}

double f(double x, double y) {
        double r13205701 = x;
        double r13205702 = y;
        double r13205703 = r13205701 - r13205702;
        double r13205704 = 200.0;
        double r13205705 = r13205703 * r13205704;
        return r13205705;
}

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.0 \cdot \left(x - y\right)\]
  2. Final simplification0.0

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

Reproduce

herbie shell --seed 2019164 
(FPCore (x y)
  :name "Data.Colour.CIE:cieLABView from colour-2.3.3, C"
  (* 200.0 (- x y)))