?

Average Accuracy: 99.2% → 99.5%
Time: 45.9s
Precision: binary64
Cost: 114688

?

\[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
\[\begin{array}{l} t_0 := \frac{\mathsf{fma}\left(x1, x1 \cdot 3, 2 \cdot x2\right) - x1}{\mathsf{fma}\left(x1, x1, 1\right)}\\ t_1 := x1 \cdot t_0\\ x1 + \mathsf{fma}\left(3, \frac{3 \cdot \left(x1 \cdot x1\right) - \mathsf{fma}\left(2, x2, x1\right)}{\mathsf{fma}\left(x1, x1, 1\right)}, x1 + \mathsf{fma}\left(\mathsf{fma}\left(x1, x1, 1\right), \mathsf{fma}\left(x1, x1 \cdot \mathsf{fma}\left(t_0, 4, -6\right), 2 \cdot \left(t_1 \cdot \left(t_0 + -3\right)\right)\right), \mathsf{fma}\left(x1 \cdot 3, t_1, {x1}^{3}\right)\right)\right) \end{array} \]
(FPCore (x1 x2)
 :precision binary64
 (+
  x1
  (+
   (+
    (+
     (+
      (*
       (+
        (*
         (*
          (* 2.0 x1)
          (/ (- (+ (* (* 3.0 x1) x1) (* 2.0 x2)) x1) (+ (* x1 x1) 1.0)))
         (- (/ (- (+ (* (* 3.0 x1) x1) (* 2.0 x2)) x1) (+ (* x1 x1) 1.0)) 3.0))
        (*
         (* x1 x1)
         (-
          (* 4.0 (/ (- (+ (* (* 3.0 x1) x1) (* 2.0 x2)) x1) (+ (* x1 x1) 1.0)))
          6.0)))
       (+ (* x1 x1) 1.0))
      (*
       (* (* 3.0 x1) x1)
       (/ (- (+ (* (* 3.0 x1) x1) (* 2.0 x2)) x1) (+ (* x1 x1) 1.0))))
     (* (* x1 x1) x1))
    x1)
   (* 3.0 (/ (- (- (* (* 3.0 x1) x1) (* 2.0 x2)) x1) (+ (* x1 x1) 1.0))))))
(FPCore (x1 x2)
 :precision binary64
 (let* ((t_0 (/ (- (fma x1 (* x1 3.0) (* 2.0 x2)) x1) (fma x1 x1 1.0)))
        (t_1 (* x1 t_0)))
   (+
    x1
    (fma
     3.0
     (/ (- (* 3.0 (* x1 x1)) (fma 2.0 x2 x1)) (fma x1 x1 1.0))
     (+
      x1
      (fma
       (fma x1 x1 1.0)
       (fma x1 (* x1 (fma t_0 4.0 -6.0)) (* 2.0 (* t_1 (+ t_0 -3.0))))
       (fma (* x1 3.0) t_1 (pow x1 3.0))))))))
double code(double x1, double x2) {
	return x1 + (((((((((2.0 * x1) * (((((3.0 * x1) * x1) + (2.0 * x2)) - x1) / ((x1 * x1) + 1.0))) * ((((((3.0 * x1) * x1) + (2.0 * x2)) - x1) / ((x1 * x1) + 1.0)) - 3.0)) + ((x1 * x1) * ((4.0 * (((((3.0 * x1) * x1) + (2.0 * x2)) - x1) / ((x1 * x1) + 1.0))) - 6.0))) * ((x1 * x1) + 1.0)) + (((3.0 * x1) * x1) * (((((3.0 * x1) * x1) + (2.0 * x2)) - x1) / ((x1 * x1) + 1.0)))) + ((x1 * x1) * x1)) + x1) + (3.0 * (((((3.0 * x1) * x1) - (2.0 * x2)) - x1) / ((x1 * x1) + 1.0))));
}
double code(double x1, double x2) {
	double t_0 = (fma(x1, (x1 * 3.0), (2.0 * x2)) - x1) / fma(x1, x1, 1.0);
	double t_1 = x1 * t_0;
	return x1 + fma(3.0, (((3.0 * (x1 * x1)) - fma(2.0, x2, x1)) / fma(x1, x1, 1.0)), (x1 + fma(fma(x1, x1, 1.0), fma(x1, (x1 * fma(t_0, 4.0, -6.0)), (2.0 * (t_1 * (t_0 + -3.0)))), fma((x1 * 3.0), t_1, pow(x1, 3.0)))));
}
function code(x1, x2)
	return Float64(x1 + Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(2.0 * x1) * Float64(Float64(Float64(Float64(Float64(3.0 * x1) * x1) + Float64(2.0 * x2)) - x1) / Float64(Float64(x1 * x1) + 1.0))) * Float64(Float64(Float64(Float64(Float64(Float64(3.0 * x1) * x1) + Float64(2.0 * x2)) - x1) / Float64(Float64(x1 * x1) + 1.0)) - 3.0)) + Float64(Float64(x1 * x1) * Float64(Float64(4.0 * Float64(Float64(Float64(Float64(Float64(3.0 * x1) * x1) + Float64(2.0 * x2)) - x1) / Float64(Float64(x1 * x1) + 1.0))) - 6.0))) * Float64(Float64(x1 * x1) + 1.0)) + Float64(Float64(Float64(3.0 * x1) * x1) * Float64(Float64(Float64(Float64(Float64(3.0 * x1) * x1) + Float64(2.0 * x2)) - x1) / Float64(Float64(x1 * x1) + 1.0)))) + Float64(Float64(x1 * x1) * x1)) + x1) + Float64(3.0 * Float64(Float64(Float64(Float64(Float64(3.0 * x1) * x1) - Float64(2.0 * x2)) - x1) / Float64(Float64(x1 * x1) + 1.0)))))
end
function code(x1, x2)
	t_0 = Float64(Float64(fma(x1, Float64(x1 * 3.0), Float64(2.0 * x2)) - x1) / fma(x1, x1, 1.0))
	t_1 = Float64(x1 * t_0)
	return Float64(x1 + fma(3.0, Float64(Float64(Float64(3.0 * Float64(x1 * x1)) - fma(2.0, x2, x1)) / fma(x1, x1, 1.0)), Float64(x1 + fma(fma(x1, x1, 1.0), fma(x1, Float64(x1 * fma(t_0, 4.0, -6.0)), Float64(2.0 * Float64(t_1 * Float64(t_0 + -3.0)))), fma(Float64(x1 * 3.0), t_1, (x1 ^ 3.0))))))
end
code[x1_, x2_] := N[(x1 + N[(N[(N[(N[(N[(N[(N[(N[(N[(2.0 * x1), $MachinePrecision] * N[(N[(N[(N[(N[(3.0 * x1), $MachinePrecision] * x1), $MachinePrecision] + N[(2.0 * x2), $MachinePrecision]), $MachinePrecision] - x1), $MachinePrecision] / N[(N[(x1 * x1), $MachinePrecision] + 1.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[(N[(N[(N[(N[(N[(3.0 * x1), $MachinePrecision] * x1), $MachinePrecision] + N[(2.0 * x2), $MachinePrecision]), $MachinePrecision] - x1), $MachinePrecision] / N[(N[(x1 * x1), $MachinePrecision] + 1.0), $MachinePrecision]), $MachinePrecision] - 3.0), $MachinePrecision]), $MachinePrecision] + N[(N[(x1 * x1), $MachinePrecision] * N[(N[(4.0 * N[(N[(N[(N[(N[(3.0 * x1), $MachinePrecision] * x1), $MachinePrecision] + N[(2.0 * x2), $MachinePrecision]), $MachinePrecision] - x1), $MachinePrecision] / N[(N[(x1 * x1), $MachinePrecision] + 1.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - 6.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[(N[(x1 * x1), $MachinePrecision] + 1.0), $MachinePrecision]), $MachinePrecision] + N[(N[(N[(3.0 * x1), $MachinePrecision] * x1), $MachinePrecision] * N[(N[(N[(N[(N[(3.0 * x1), $MachinePrecision] * x1), $MachinePrecision] + N[(2.0 * x2), $MachinePrecision]), $MachinePrecision] - x1), $MachinePrecision] / N[(N[(x1 * x1), $MachinePrecision] + 1.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(N[(x1 * x1), $MachinePrecision] * x1), $MachinePrecision]), $MachinePrecision] + x1), $MachinePrecision] + N[(3.0 * N[(N[(N[(N[(N[(3.0 * x1), $MachinePrecision] * x1), $MachinePrecision] - N[(2.0 * x2), $MachinePrecision]), $MachinePrecision] - x1), $MachinePrecision] / N[(N[(x1 * x1), $MachinePrecision] + 1.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
code[x1_, x2_] := Block[{t$95$0 = N[(N[(N[(x1 * N[(x1 * 3.0), $MachinePrecision] + N[(2.0 * x2), $MachinePrecision]), $MachinePrecision] - x1), $MachinePrecision] / N[(x1 * x1 + 1.0), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$1 = N[(x1 * t$95$0), $MachinePrecision]}, N[(x1 + N[(3.0 * N[(N[(N[(3.0 * N[(x1 * x1), $MachinePrecision]), $MachinePrecision] - N[(2.0 * x2 + x1), $MachinePrecision]), $MachinePrecision] / N[(x1 * x1 + 1.0), $MachinePrecision]), $MachinePrecision] + N[(x1 + N[(N[(x1 * x1 + 1.0), $MachinePrecision] * N[(x1 * N[(x1 * N[(t$95$0 * 4.0 + -6.0), $MachinePrecision]), $MachinePrecision] + N[(2.0 * N[(t$95$1 * N[(t$95$0 + -3.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(N[(x1 * 3.0), $MachinePrecision] * t$95$1 + N[Power[x1, 3.0], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]
x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right)
\begin{array}{l}
t_0 := \frac{\mathsf{fma}\left(x1, x1 \cdot 3, 2 \cdot x2\right) - x1}{\mathsf{fma}\left(x1, x1, 1\right)}\\
t_1 := x1 \cdot t_0\\
x1 + \mathsf{fma}\left(3, \frac{3 \cdot \left(x1 \cdot x1\right) - \mathsf{fma}\left(2, x2, x1\right)}{\mathsf{fma}\left(x1, x1, 1\right)}, x1 + \mathsf{fma}\left(\mathsf{fma}\left(x1, x1, 1\right), \mathsf{fma}\left(x1, x1 \cdot \mathsf{fma}\left(t_0, 4, -6\right), 2 \cdot \left(t_1 \cdot \left(t_0 + -3\right)\right)\right), \mathsf{fma}\left(x1 \cdot 3, t_1, {x1}^{3}\right)\right)\right)
\end{array}

Error?

Derivation?

  1. Initial program 99.2%

    \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
  2. Simplified99.5%

    \[\leadsto \color{blue}{x1 + \mathsf{fma}\left(3, \frac{3 \cdot \left(x1 \cdot x1\right) - \mathsf{fma}\left(2, x2, x1\right)}{\mathsf{fma}\left(x1, x1, 1\right)}, x1 + \mathsf{fma}\left(\mathsf{fma}\left(x1, x1, 1\right), \mathsf{fma}\left(x1, x1 \cdot \mathsf{fma}\left(\frac{\mathsf{fma}\left(x1, x1 \cdot 3, 2 \cdot x2\right) - x1}{\mathsf{fma}\left(x1, x1, 1\right)}, 4, -6\right), 2 \cdot \left(\left(x1 \cdot \frac{\mathsf{fma}\left(x1, x1 \cdot 3, 2 \cdot x2\right) - x1}{\mathsf{fma}\left(x1, x1, 1\right)}\right) \cdot \left(\frac{\mathsf{fma}\left(x1, x1 \cdot 3, 2 \cdot x2\right) - x1}{\mathsf{fma}\left(x1, x1, 1\right)} + -3\right)\right)\right), \mathsf{fma}\left(x1 \cdot 3, x1 \cdot \frac{\mathsf{fma}\left(x1, x1 \cdot 3, 2 \cdot x2\right) - x1}{\mathsf{fma}\left(x1, x1, 1\right)}, {x1}^{3}\right)\right)\right)} \]
    Proof

    [Start]99.2

    \[ x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]

    +-commutative [=>]99.2

    \[ x1 + \color{blue}{\left(3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} + \left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right)\right)} \]
  3. Final simplification99.5%

    \[\leadsto x1 + \mathsf{fma}\left(3, \frac{3 \cdot \left(x1 \cdot x1\right) - \mathsf{fma}\left(2, x2, x1\right)}{\mathsf{fma}\left(x1, x1, 1\right)}, x1 + \mathsf{fma}\left(\mathsf{fma}\left(x1, x1, 1\right), \mathsf{fma}\left(x1, x1 \cdot \mathsf{fma}\left(\frac{\mathsf{fma}\left(x1, x1 \cdot 3, 2 \cdot x2\right) - x1}{\mathsf{fma}\left(x1, x1, 1\right)}, 4, -6\right), 2 \cdot \left(\left(x1 \cdot \frac{\mathsf{fma}\left(x1, x1 \cdot 3, 2 \cdot x2\right) - x1}{\mathsf{fma}\left(x1, x1, 1\right)}\right) \cdot \left(\frac{\mathsf{fma}\left(x1, x1 \cdot 3, 2 \cdot x2\right) - x1}{\mathsf{fma}\left(x1, x1, 1\right)} + -3\right)\right)\right), \mathsf{fma}\left(x1 \cdot 3, x1 \cdot \frac{\mathsf{fma}\left(x1, x1 \cdot 3, 2 \cdot x2\right) - x1}{\mathsf{fma}\left(x1, x1, 1\right)}, {x1}^{3}\right)\right)\right) \]

Alternatives

Alternative 1
Accuracy99.6%
Cost94848
\[\begin{array}{l} t_0 := \mathsf{fma}\left(x1, x1 \cdot 3, \mathsf{fma}\left(2, x2, -x1\right)\right)\\ t_1 := \frac{t_0}{\mathsf{fma}\left(x1, x1, 1\right)}\\ x1 + \mathsf{fma}\left(3, \frac{x1 \cdot \left(x1 \cdot 3\right) - \mathsf{fma}\left(2, x2, x1\right)}{\mathsf{fma}\left(x1, x1, 1\right)}, \mathsf{fma}\left(x1, x1 \cdot \left(3 \cdot t_1\right), \mathsf{fma}\left(x1, x1, 1\right) \cdot \left(x1 + \left(x1 \cdot \left(x1 \cdot -6\right) + t_1 \cdot \left(x1 \cdot \left(-6 + \frac{2}{\frac{\mathsf{fma}\left(x1, x1, 1\right)}{t_0}}\right) + \left(x1 \cdot x1\right) \cdot 4\right)\right)\right)\right)\right) \end{array} \]
Alternative 2
Accuracy99.2%
Cost20928
\[\begin{array}{l} t_0 := x1 \cdot \left(x1 \cdot 3\right)\\ t_1 := x1 \cdot x1 + 1\\ t_2 := \frac{\left(2 \cdot x2 + t_0\right) - x1}{t_1}\\ x1 + \left(\left(x1 + \left(\left(t_1 \cdot \left(\left(\left(x1 \cdot 2\right) \cdot t_2\right) \cdot \left(-3 + t_2\right) + \left(\left(x1 \cdot x1\right) \cdot \frac{4 \cdot \left(\mathsf{fma}\left(x1 \cdot 3, x1, 2 \cdot x2\right) - x1\right)}{\mathsf{fma}\left(x1, x1, 1\right)} + \left(x1 \cdot x1\right) \cdot -6\right)\right) + t_0 \cdot t_2\right) + x1 \cdot \left(x1 \cdot x1\right)\right)\right) + 3 \cdot \frac{\left(t_0 + x2 \cdot -2\right) - x1}{t_1}\right) \end{array} \]
Alternative 3
Accuracy99.2%
Cost8128
\[\begin{array}{l} t_0 := x1 \cdot \left(x1 \cdot 3\right)\\ t_1 := x1 \cdot x1 + 1\\ t_2 := \frac{\left(2 \cdot x2 + t_0\right) - x1}{t_1}\\ x1 + \left(3 \cdot \frac{\left(t_0 + x2 \cdot -2\right) - x1}{t_1} + \left(x1 + \left(x1 \cdot \left(x1 \cdot x1\right) + \left(t_0 \cdot t_2 + t_1 \cdot \left(\left(\left(x1 \cdot 2\right) \cdot t_2\right) \cdot \left(-3 + t_2\right) + \left(x1 \cdot x1\right) \cdot \left(-6 + 4 \cdot t_2\right)\right)\right)\right)\right)\right) \end{array} \]
Alternative 4
Accuracy95.6%
Cost6980
\[\begin{array}{l} t_0 := x1 \cdot x1 + 1\\ t_1 := x1 \cdot \left(x1 \cdot 6\right)\\ t_2 := x1 \cdot \left(x1 \cdot x1\right)\\ t_3 := x1 \cdot \left(x1 \cdot 3\right)\\ t_4 := 3 \cdot \frac{\left(t_3 + x2 \cdot -2\right) - x1}{t_0}\\ t_5 := \frac{\left(2 \cdot x2 + t_3\right) - x1}{t_0}\\ t_6 := t_3 \cdot t_5\\ \mathbf{if}\;x1 \leq 63:\\ \;\;\;\;x1 + \left(t_4 + \left(x1 + \left(t_2 + \left(t_6 + t_0 \cdot \left(\left(\left(x1 \cdot 2\right) \cdot t_5\right) \cdot \left(-3 + t_5\right) + t_1\right)\right)\right)\right)\right)\\ \mathbf{else}:\\ \;\;\;\;x1 + \left(t_4 + \left(x1 + \left(t_2 + \left(t_6 + t_0 \cdot \left(-6 + \left(x1 \cdot -4 + \left(t_1 + 4 \cdot \left(2 \cdot x2 - 3\right)\right)\right)\right)\right)\right)\right)\right)\\ \end{array} \]
Alternative 5
Accuracy96.6%
Cost6980
\[\begin{array}{l} t_0 := x1 \cdot \left(x1 \cdot x1\right)\\ t_1 := x1 \cdot \left(x1 \cdot 3\right)\\ t_2 := x1 \cdot x1 + 1\\ t_3 := 3 \cdot \frac{\left(t_1 + x2 \cdot -2\right) - x1}{t_2}\\ t_4 := \frac{\left(2 \cdot x2 + t_1\right) - x1}{t_2}\\ t_5 := \left(x1 \cdot 2\right) \cdot t_4\\ \mathbf{if}\;x1 \leq 53:\\ \;\;\;\;x1 + \left(t_3 + \left(x1 + \left(t_0 + \left(t_1 \cdot t_4 + t_2 \cdot \left(t_5 \cdot \left(-3 + t_4\right) + x1 \cdot \left(x1 \cdot 6\right)\right)\right)\right)\right)\right)\\ \mathbf{else}:\\ \;\;\;\;x1 + \left(t_3 + \left(x1 + \left(t_0 + \left(x1 \cdot \left(x1 \cdot 9\right) + t_2 \cdot \left(\left(x1 \cdot x1\right) \cdot \left(-6 + 4 \cdot t_4\right) + t_5 \cdot \left(\frac{\frac{2 \cdot x2}{x1}}{x1} + \left(\frac{-1}{x1} + \frac{-3}{x1 \cdot x1}\right)\right)\right)\right)\right)\right)\right)\\ \end{array} \]
Alternative 6
Accuracy97.8%
Cost6976
\[\begin{array}{l} t_0 := x1 \cdot \left(x1 \cdot 3\right)\\ t_1 := x1 \cdot x1 + 1\\ t_2 := \frac{\left(2 \cdot x2 + t_0\right) - x1}{t_1}\\ x1 + \left(3 \cdot \frac{\left(t_0 + x2 \cdot -2\right) - x1}{t_1} + \left(x1 + \left(x1 \cdot \left(x1 \cdot x1\right) + \left(t_1 \cdot \left(\left(\left(x1 \cdot 2\right) \cdot t_2\right) \cdot \left(-3 + t_2\right) + \left(x1 \cdot x1\right) \cdot \left(-6 + 4 \cdot t_2\right)\right) + x1 \cdot \left(x1 \cdot 9\right)\right)\right)\right)\right) \end{array} \]
Alternative 7
Accuracy95.5%
Cost5828
\[\begin{array}{l} t_0 := x1 \cdot \left(x1 \cdot x1\right)\\ t_1 := x1 \cdot \left(x1 \cdot 3\right)\\ t_2 := x1 \cdot x1 + 1\\ t_3 := \frac{\left(2 \cdot x2 + t_1\right) - x1}{t_2}\\ t_4 := 3 \cdot \frac{\left(t_1 + x2 \cdot -2\right) - x1}{t_2}\\ t_5 := x1 \cdot \left(x1 \cdot 6\right)\\ \mathbf{if}\;x1 \leq 63:\\ \;\;\;\;x1 + \left(t_4 + \left(x1 + \left(t_0 + \left(x1 \cdot \left(x1 \cdot 9\right) + t_2 \cdot \left(\left(\left(x1 \cdot 2\right) \cdot t_3\right) \cdot \left(-3 + t_3\right) + t_5\right)\right)\right)\right)\right)\\ \mathbf{else}:\\ \;\;\;\;x1 + \left(t_4 + \left(x1 + \left(t_0 + \left(t_1 \cdot t_3 + t_2 \cdot \left(-6 + \left(x1 \cdot -4 + \left(t_5 + 4 \cdot \left(2 \cdot x2 - 3\right)\right)\right)\right)\right)\right)\right)\right)\\ \end{array} \]
Alternative 8
Accuracy95.9%
Cost5321
\[\begin{array}{l} t_0 := x1 \cdot \left(x1 \cdot 3\right)\\ t_1 := x1 \cdot x1 + 1\\ t_2 := x1 \cdot \left(x1 \cdot x1\right)\\ t_3 := 3 \cdot \frac{\left(t_0 + x2 \cdot -2\right) - x1}{t_1}\\ t_4 := t_0 \cdot \frac{\left(2 \cdot x2 + t_0\right) - x1}{t_1}\\ \mathbf{if}\;x1 \leq -118 \lor \neg \left(x1 \leq 3.55\right):\\ \;\;\;\;x1 + \left(t_3 + \left(x1 + \left(t_2 + \left(t_4 + t_1 \cdot \left(-6 + \left(x1 \cdot -4 + \left(x1 \cdot \left(x1 \cdot 6\right) + 4 \cdot \left(2 \cdot x2 - 3\right)\right)\right)\right)\right)\right)\right)\right)\\ \mathbf{else}:\\ \;\;\;\;x1 + \left(t_3 + \left(x1 + \left(t_2 + \left(t_4 + t_1 \cdot \frac{x2 \cdot 8}{2 \cdot \frac{x1}{x2} + \frac{1}{x1 \cdot x2}}\right)\right)\right)\right)\\ \end{array} \]
Alternative 9
Accuracy95.8%
Cost5065
\[\begin{array}{l} t_0 := x1 \cdot \left(x1 \cdot 3\right)\\ t_1 := x1 \cdot x1 + 1\\ t_2 := \frac{\left(2 \cdot x2 + t_0\right) - x1}{t_1}\\ t_3 := x1 \cdot \left(x1 \cdot x1\right)\\ t_4 := 3 \cdot \frac{\left(t_0 + x2 \cdot -2\right) - x1}{t_1}\\ \mathbf{if}\;x1 \leq -118 \lor \neg \left(x1 \leq 2.8\right):\\ \;\;\;\;x1 + \left(t_4 + \left(x1 + \left(t_3 + \left(x1 \cdot \left(x1 \cdot 9\right) + t_1 \cdot \left(-6 + \left(x1 \cdot x1\right) \cdot \left(-6 + 4 \cdot t_2\right)\right)\right)\right)\right)\right)\\ \mathbf{else}:\\ \;\;\;\;x1 + \left(t_4 + \left(x1 + \left(t_3 + \left(t_0 \cdot t_2 + t_1 \cdot \frac{x2 \cdot 8}{2 \cdot \frac{x1}{x2} + \frac{1}{x1 \cdot x2}}\right)\right)\right)\right)\\ \end{array} \]
Alternative 10
Accuracy95.3%
Cost4681
\[\begin{array}{l} t_0 := x1 \cdot \left(x1 \cdot 3\right)\\ t_1 := x1 \cdot x1 + 1\\ t_2 := x1 \cdot \left(x1 \cdot x1\right)\\ t_3 := 3 \cdot \frac{\left(t_0 + x2 \cdot -2\right) - x1}{t_1}\\ t_4 := x1 \cdot \left(x1 \cdot 9\right)\\ \mathbf{if}\;x1 \leq -118 \lor \neg \left(x1 \leq 4.9\right):\\ \;\;\;\;x1 + \left(t_3 + \left(x1 + \left(t_2 + \left(t_4 + t_1 \cdot \left(-6 + \left(x1 \cdot x1\right) \cdot \left(-6 + 4 \cdot \frac{\left(2 \cdot x2 + t_0\right) - x1}{t_1}\right)\right)\right)\right)\right)\right)\\ \mathbf{else}:\\ \;\;\;\;x1 + \left(t_3 + \left(x1 + \left(t_2 + \left(t_4 + t_1 \cdot \frac{x2 \cdot 8}{2 \cdot \frac{x1}{x2} + \frac{1}{x1 \cdot x2}}\right)\right)\right)\right)\\ \end{array} \]
Alternative 11
Accuracy93.5%
Cost4292
\[\begin{array}{l} t_0 := x1 \cdot x1 + 1\\ t_1 := x1 \cdot \left(x1 \cdot x1\right)\\ t_2 := x1 \cdot \left(x1 \cdot 3\right)\\ t_3 := 3 \cdot \frac{\left(t_2 + x2 \cdot -2\right) - x1}{t_0}\\ \mathbf{if}\;x1 \leq -118:\\ \;\;\;\;x1 + \left(t_3 + \left(x1 + \left(t_1 + \left(t_2 \cdot \frac{\left(2 \cdot x2 + t_2\right) - x1}{t_0} + t_0 \cdot \left(x1 \cdot \left(x1 \cdot 6\right)\right)\right)\right)\right)\right)\\ \mathbf{elif}\;x1 \leq 4.6:\\ \;\;\;\;x1 + \left(t_3 + \left(x1 + \left(t_1 + \left(x1 \cdot \left(x1 \cdot 9\right) + t_0 \cdot \frac{x2 \cdot 8}{2 \cdot \frac{x1}{x2} + \frac{1}{x1 \cdot x2}}\right)\right)\right)\right)\\ \mathbf{else}:\\ \;\;\;\;x1 + \left(t_3 + \left(x1 + \left(t_1 + \left(t_0 \cdot \left(\left(x1 \cdot x1\right) \cdot 6\right) + \left(x1 \cdot x1\right) \cdot \left(x2 \cdot 6\right)\right)\right)\right)\right)\\ \end{array} \]
Alternative 12
Accuracy93.7%
Cost3913
\[\begin{array}{l} t_0 := x1 \cdot x1 + 1\\ t_1 := x1 \cdot \left(x1 \cdot x1\right)\\ t_2 := 3 \cdot \frac{\left(x1 \cdot \left(x1 \cdot 3\right) + x2 \cdot -2\right) - x1}{t_0}\\ \mathbf{if}\;x1 \leq -118 \lor \neg \left(x1 \leq 6.3\right):\\ \;\;\;\;x1 + \left(t_2 + \left(x1 + \left(t_1 + \left(t_0 \cdot \left(\left(x1 \cdot x1\right) \cdot 6\right) + \left(x1 \cdot x1\right) \cdot \left(x2 \cdot 6\right)\right)\right)\right)\right)\\ \mathbf{else}:\\ \;\;\;\;x1 + \left(t_2 + \left(x1 + \left(t_1 + \left(x1 \cdot \left(x1 \cdot 9\right) + t_0 \cdot \frac{x2 \cdot 8}{2 \cdot \frac{x1}{x2} + \frac{1}{x1 \cdot x2}}\right)\right)\right)\right)\\ \end{array} \]
Alternative 13
Accuracy94.0%
Cost3785
\[\begin{array}{l} t_0 := \left(x1 \cdot x1\right) \cdot \left(x2 \cdot 6\right)\\ t_1 := x1 \cdot x1 + 1\\ t_2 := x1 \cdot \left(x1 \cdot x1\right)\\ t_3 := 3 \cdot \frac{\left(x1 \cdot \left(x1 \cdot 3\right) + x2 \cdot -2\right) - x1}{t_1}\\ \mathbf{if}\;x1 \leq -118 \lor \neg \left(x1 \leq 4.9\right):\\ \;\;\;\;x1 + \left(t_3 + \left(x1 + \left(t_2 + \left(t_1 \cdot \left(\left(x1 \cdot x1\right) \cdot 6\right) + t_0\right)\right)\right)\right)\\ \mathbf{else}:\\ \;\;\;\;x1 + \left(t_3 + \left(x1 + \left(t_2 + \left(t_0 + t_1 \cdot \left(4 \cdot \left(x2 \cdot \left(x1 \cdot \left(2 \cdot x2 - 3\right)\right)\right)\right)\right)\right)\right)\right)\\ \end{array} \]
Alternative 14
Accuracy94.0%
Cost3657
\[\begin{array}{l} t_0 := \left(x1 \cdot x1\right) \cdot \left(x2 \cdot 6\right)\\ t_1 := x1 \cdot x1 + 1\\ t_2 := x1 \cdot \left(x1 \cdot x1\right)\\ t_3 := 3 \cdot \frac{\left(x1 \cdot \left(x1 \cdot 3\right) + x2 \cdot -2\right) - x1}{t_1}\\ \mathbf{if}\;x1 \leq -118 \lor \neg \left(x1 \leq 4.5\right):\\ \;\;\;\;x1 + \left(t_3 + \left(x1 + \left(t_2 + \left(t_1 \cdot \left(\left(x1 \cdot x1\right) \cdot 6\right) + t_0\right)\right)\right)\right)\\ \mathbf{else}:\\ \;\;\;\;x1 + \left(t_3 + \left(x1 + \left(t_2 + \left(t_0 + t_1 \cdot \left(x2 \cdot \frac{x2 \cdot 8}{\frac{1}{x1}}\right)\right)\right)\right)\right)\\ \end{array} \]
Alternative 15
Accuracy93.6%
Cost3401
\[\begin{array}{l} t_0 := x1 \cdot x1 + 1\\ t_1 := x1 \cdot \left(x1 \cdot x1\right)\\ t_2 := 3 \cdot \frac{\left(x1 \cdot \left(x1 \cdot 3\right) + x2 \cdot -2\right) - x1}{t_0}\\ \mathbf{if}\;x1 \leq -118 \lor \neg \left(x1 \leq 5.6\right):\\ \;\;\;\;x1 + \left(t_2 + \left(x1 + \left(t_1 + \left(t_0 \cdot \left(\left(x1 \cdot x1\right) \cdot 6\right) + \left(x1 \cdot x1\right) \cdot \left(x2 \cdot 6\right)\right)\right)\right)\right)\\ \mathbf{else}:\\ \;\;\;\;x1 + \left(t_2 + \left(x1 + \left(t_1 + \left(x1 \cdot \left(x1 \cdot 9\right) + x2 \cdot \left(x1 \cdot \left(x2 \cdot 8\right)\right)\right)\right)\right)\right)\\ \end{array} \]
Alternative 16
Accuracy80.4%
Cost2752
\[x1 + \left(3 \cdot \frac{\left(x1 \cdot \left(x1 \cdot 3\right) + x2 \cdot -2\right) - x1}{x1 \cdot x1 + 1} + \left(x1 + \left(x1 \cdot \left(x1 \cdot x1\right) + \left(x1 \cdot \left(x1 \cdot 9\right) + x2 \cdot \left(x1 \cdot \left(x2 \cdot 8\right)\right)\right)\right)\right)\right) \]
Alternative 17
Accuracy74.7%
Cost1480
\[\begin{array}{l} \mathbf{if}\;x2 \leq -4.8 \cdot 10^{+153}:\\ \;\;\;\;x2 \cdot -6\\ \mathbf{elif}\;x2 \leq 9.5 \cdot 10^{+149}:\\ \;\;\;\;x1 + \left(x2 \cdot -6 + x1 \cdot \left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + -2\right)\right)\\ \mathbf{else}:\\ \;\;\;\;x2 \cdot -6\\ \end{array} \]
Alternative 18
Accuracy47.0%
Cost192
\[x2 \cdot -6 \]
Alternative 19
Accuracy3.4%
Cost64
\[x1 \]

Error

Reproduce?

herbie shell --seed 2023135 
(FPCore (x1 x2)
  :name "Rosa's FloatVsDoubleBenchmark"
  :precision binary64
  (+ x1 (+ (+ (+ (+ (* (+ (* (* (* 2.0 x1) (/ (- (+ (* (* 3.0 x1) x1) (* 2.0 x2)) x1) (+ (* x1 x1) 1.0))) (- (/ (- (+ (* (* 3.0 x1) x1) (* 2.0 x2)) x1) (+ (* x1 x1) 1.0)) 3.0)) (* (* x1 x1) (- (* 4.0 (/ (- (+ (* (* 3.0 x1) x1) (* 2.0 x2)) x1) (+ (* x1 x1) 1.0))) 6.0))) (+ (* x1 x1) 1.0)) (* (* (* 3.0 x1) x1) (/ (- (+ (* (* 3.0 x1) x1) (* 2.0 x2)) x1) (+ (* x1 x1) 1.0)))) (* (* x1 x1) x1)) x1) (* 3.0 (/ (- (- (* (* 3.0 x1) x1) (* 2.0 x2)) x1) (+ (* x1 x1) 1.0))))))