Average Error: 0.0 → 0.0
Time: 1.7s
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 r4967 = x;
        double r4968 = y;
        double r4969 = r4967 + r4968;
        double r4970 = 10.0;
        double r4971 = r4969 / r4970;
        return r4971;
}

double f(double x, double y) {
        double r4972 = x;
        double r4973 = y;
        double r4974 = r4972 + r4973;
        double r4975 = 10.0;
        double r4976 = r4974 / r4975;
        return r4976;
}

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 2020039 +o rules:numerics
(FPCore (x y)
  :name "Text.Parsec.Token:makeTokenParser from parsec-3.1.9, A"
  :precision binary64
  (/ (+ x y) 10))