Average Error: 0.0 → 0.0
Time: 1.3s
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 r230453 = 200.0;
        double r230454 = x;
        double r230455 = y;
        double r230456 = r230454 - r230455;
        double r230457 = r230453 * r230456;
        return r230457;
}

double f(double x, double y) {
        double r230458 = 200.0;
        double r230459 = x;
        double r230460 = y;
        double r230461 = r230459 - r230460;
        double r230462 = r230458 * r230461;
        return r230462;
}

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