Average Error: 0.0 → 0.0
Time: 1.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 r215450 = 200.0;
        double r215451 = x;
        double r215452 = y;
        double r215453 = r215451 - r215452;
        double r215454 = r215450 * r215453;
        return r215454;
}

double f(double x, double y) {
        double r215455 = 200.0;
        double r215456 = x;
        double r215457 = y;
        double r215458 = r215456 - r215457;
        double r215459 = r215455 * r215458;
        return r215459;
}

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