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 r173195 = 200.0;
        double r173196 = x;
        double r173197 = y;
        double r173198 = r173196 - r173197;
        double r173199 = r173195 * r173198;
        return r173199;
}

double f(double x, double y) {
        double r173200 = 200.0;
        double r173201 = x;
        double r173202 = y;
        double r173203 = r173201 - r173202;
        double r173204 = r173200 * r173203;
        return r173204;
}

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