Average Error: 0.0 → 0.0
Time: 13.2s
Precision: 64
\[\frac{x + y}{10}\]
\[\frac{x + y}{10}\]
\frac{x + y}{10}
\frac{x + y}{10}
double f(double x, double y) {
        double r13476 = x;
        double r13477 = y;
        double r13478 = r13476 + r13477;
        double r13479 = 10.0;
        double r13480 = r13478 / r13479;
        return r13480;
}

double f(double x, double y) {
        double r13481 = x;
        double r13482 = y;
        double r13483 = r13481 + r13482;
        double r13484 = 10.0;
        double r13485 = r13483 / r13484;
        return r13485;
}

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

    \[\frac{x + y}{10}\]
  2. Final simplification0.0

    \[\leadsto \frac{x + y}{10}\]

Reproduce

herbie shell --seed 2019322 +o rules:numerics
(FPCore (x y)
  :name "Text.Parsec.Token:makeTokenParser from parsec-3.1.9, A"
  :precision binary64
  (/ (+ x y) 10))