Average Error: 0.2 → 0.2
Time: 3.5s
Precision: 64
\[\left(x \cdot y\right) \cdot y\]
\[\left(x \cdot y\right) \cdot y\]
\left(x \cdot y\right) \cdot y
\left(x \cdot y\right) \cdot y
double f(double x, double y) {
        double r200754 = x;
        double r200755 = y;
        double r200756 = r200754 * r200755;
        double r200757 = r200756 * r200755;
        return r200757;
}

double f(double x, double y) {
        double r200758 = x;
        double r200759 = y;
        double r200760 = r200758 * r200759;
        double r200761 = r200760 * r200759;
        return r200761;
}

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.2

    \[\left(x \cdot y\right) \cdot y\]
  2. Final simplification0.2

    \[\leadsto \left(x \cdot y\right) \cdot y\]

Reproduce

herbie shell --seed 2020060 +o rules:numerics
(FPCore (x y)
  :name "Data.HyperLogLog.Config:hll from hyperloglog-0.3.4"
  :precision binary64
  (* (* x y) y))