| Alternative 1 |
|---|
| Accuracy | 63.7% |
|---|
| Cost | 984 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -5.5 \cdot 10^{-12}:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq -6.4 \cdot 10^{-47}:\\
\;\;\;\;x + x\\
\mathbf{elif}\;x \leq -1.06 \cdot 10^{-72}:\\
\;\;\;\;y \cdot y\\
\mathbf{elif}\;x \leq -3.35 \cdot 10^{-175}:\\
\;\;\;\;x + x\\
\mathbf{elif}\;x \leq 2.75 \cdot 10^{-275}:\\
\;\;\;\;y \cdot y\\
\mathbf{elif}\;x \leq 2:\\
\;\;\;\;x + x\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 84.4% |
|---|
| Cost | 972 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \cdot y \leq 5.8 \cdot 10^{-93}:\\
\;\;\;\;x \cdot \left(x + 2\right)\\
\mathbf{elif}\;y \cdot y \leq 2.2 \cdot 10^{-7}:\\
\;\;\;\;y \cdot y\\
\mathbf{elif}\;y \cdot y \leq 360000000:\\
\;\;\;\;x \cdot x\\
\mathbf{else}:\\
\;\;\;\;y \cdot y\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 93.5% |
|---|
| Cost | 713 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1 \cdot 10^{-8} \lor \neg \left(x \leq 95000000\right):\\
\;\;\;\;x \cdot \left(x + 2\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot y + x \cdot 2\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 98.0% |
|---|
| Cost | 713 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2 \lor \neg \left(x \leq 1.95 \cdot 10^{-7}\right):\\
\;\;\;\;y \cdot y + x \cdot x\\
\mathbf{else}:\\
\;\;\;\;y \cdot y + x \cdot 2\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 576 |
|---|
\[y \cdot y + x \cdot \left(x + 2\right)
\]
| Alternative 6 |
|---|
| Accuracy | 61.1% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1400000:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq 95000000:\\
\;\;\;\;y \cdot y\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]