| Alternative 1 |
|---|
| Accuracy | 64.2% |
|---|
| Cost | 1248 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq -1.7 \cdot 10^{-138}:\\
\;\;\;\;x + x\\
\mathbf{elif}\;x \leq -2.2 \cdot 10^{-304}:\\
\;\;\;\;y \cdot y\\
\mathbf{elif}\;x \leq 2.4 \cdot 10^{-260}:\\
\;\;\;\;x + x\\
\mathbf{elif}\;x \leq 7.2 \cdot 10^{-219}:\\
\;\;\;\;y \cdot y\\
\mathbf{elif}\;x \leq 1.7 \cdot 10^{-193}:\\
\;\;\;\;x + x\\
\mathbf{elif}\;x \leq 1.96 \cdot 10^{-140}:\\
\;\;\;\;y \cdot y\\
\mathbf{elif}\;x \leq 2:\\
\;\;\;\;x + x\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 93.6% |
|---|
| Cost | 713 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -8.2 \cdot 10^{-14} \lor \neg \left(x \leq 1.75 \cdot 10^{-7}\right):\\
\;\;\;\;x \cdot \left(x + 2\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot y + x \cdot 2\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 98.2% |
|---|
| Cost | 713 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2 \lor \neg \left(x \leq 2\right):\\
\;\;\;\;y \cdot y + x \cdot x\\
\mathbf{else}:\\
\;\;\;\;y \cdot y + x \cdot 2\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 84.6% |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.18 \cdot 10^{-36}:\\
\;\;\;\;y \cdot y\\
\mathbf{elif}\;y \leq 3.6 \cdot 10^{-40}:\\
\;\;\;\;x \cdot \left(x + 2\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot y\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 576 |
|---|
\[y \cdot y + x \cdot \left(x + 2\right)
\]
| Alternative 6 |
|---|
| Accuracy | 62.4% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -3.55 \cdot 10^{+16}:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq 11000000000000:\\
\;\;\;\;y \cdot y\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]