| Alternative 1 |
|---|
| Accuracy | 36.6% |
|---|
| Cost | 984 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -7.6 \cdot 10^{-11}:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq -1.3 \cdot 10^{-175}:\\
\;\;\;\;x + x\\
\mathbf{elif}\;x \leq 4.6 \cdot 10^{-218}:\\
\;\;\;\;y \cdot y\\
\mathbf{elif}\;x \leq 3.5 \cdot 10^{-116}:\\
\;\;\;\;x + x\\
\mathbf{elif}\;x \leq 10^{-69}:\\
\;\;\;\;y \cdot y\\
\mathbf{elif}\;x \leq 2:\\
\;\;\;\;x + x\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 52.9% |
|---|
| Cost | 713 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -7.6 \cdot 10^{-56} \lor \neg \left(y \leq 2.2 \cdot 10^{-101}\right):\\
\;\;\;\;y \cdot y + x \cdot x\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(x + 2\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 54.3% |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -0.0011:\\
\;\;\;\;x \cdot \left(x + 2\right)\\
\mathbf{elif}\;x \leq 0.72:\\
\;\;\;\;y \cdot y + \left(x + x\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot y + x \cdot x\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 48.1% |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.2 \cdot 10^{-36}:\\
\;\;\;\;y \cdot y\\
\mathbf{elif}\;y \leq 1.2 \cdot 10^{-17}:\\
\;\;\;\;x \cdot \left(x + 2\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot y\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 56.7% |
|---|
| Cost | 576 |
|---|
\[y \cdot y + x \cdot \left(x + 2\right)
\]
| Alternative 6 |
|---|
| Accuracy | 35.6% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -52:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq 22500000000:\\
\;\;\;\;y \cdot y\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]