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 r215406 = 200.0;
        double r215407 = x;
        double r215408 = y;
        double r215409 = r215407 - r215408;
        double r215410 = r215406 * r215409;
        return r215410;
}

double f(double x, double y) {
        double r215411 = 200.0;
        double r215412 = x;
        double r215413 = y;
        double r215414 = r215412 - r215413;
        double r215415 = r215411 * r215414;
        return r215415;
}

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