Average Error: 0.0 → 0.0
Time: 1.9s
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 r280162 = 200.0;
        double r280163 = x;
        double r280164 = y;
        double r280165 = r280163 - r280164;
        double r280166 = r280162 * r280165;
        return r280166;
}

double f(double x, double y) {
        double r280167 = 200.0;
        double r280168 = x;
        double r280169 = y;
        double r280170 = r280168 - r280169;
        double r280171 = r280167 * r280170;
        return r280171;
}

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