Average Error: 0.0 → 0.0
Time: 5.2s
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 r205853 = 200.0;
        double r205854 = x;
        double r205855 = y;
        double r205856 = r205854 - r205855;
        double r205857 = r205853 * r205856;
        return r205857;
}

double f(double x, double y) {
        double r205858 = 200.0;
        double r205859 = x;
        double r205860 = y;
        double r205861 = r205859 - r205860;
        double r205862 = r205858 * r205861;
        return r205862;
}

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 2019208 
(FPCore (x y)
  :name "Data.Colour.CIE:cieLABView from colour-2.3.3, C"
  :precision binary64
  (* 200 (- x y)))