| Alternative 1 |
|---|
| Accuracy | 70.8% |
|---|
| Cost | 720 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4 \cdot 10^{+21}:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq 6.6 \cdot 10^{-165}:\\
\;\;\;\;y \cdot y\\
\mathbf{elif}\;x \leq 2.45 \cdot 10^{-77}:\\
\;\;\;\;x + x\\
\mathbf{elif}\;x \leq 5 \cdot 10^{+48}:\\
\;\;\;\;y \cdot y\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 96.5% |
|---|
| Cost | 713 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.35 \cdot 10^{-54} \lor \neg \left(y \leq 2.75 \cdot 10^{-96}\right):\\
\;\;\;\;y \cdot y + x \cdot x\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(x + 2\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 98.8% |
|---|
| Cost | 713 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2 \lor \neg \left(x \leq 3.2 \cdot 10^{-12}\right):\\
\;\;\;\;y \cdot y + x \cdot x\\
\mathbf{else}:\\
\;\;\;\;y \cdot y + \left(x + x\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 84.2% |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.35 \cdot 10^{+62}:\\
\;\;\;\;y \cdot y\\
\mathbf{elif}\;y \leq 2.2 \cdot 10^{+59}:\\
\;\;\;\;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 | 71.8% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -8.2 \cdot 10^{+20}:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq 4.1 \cdot 10^{+48}:\\
\;\;\;\;y \cdot y\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]