| Alternative 1 |
|---|
| Accuracy | 60.5% |
|---|
| Cost | 1248 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;y \leq 2.9 \cdot 10^{-158}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 5.6 \cdot 10^{-84}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 4.8 \cdot 10^{-39}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 9 \cdot 10^{+84}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 4.8 \cdot 10^{+137}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;y \leq 8 \cdot 10^{+278}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 2.75 \cdot 10^{+293}:\\
\;\;\;\;x \cdot y\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 75.1% |
|---|
| Cost | 852 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.48 \cdot 10^{+23}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;y \leq 1.9 \cdot 10^{+82}:\\
\;\;\;\;x + y\\
\mathbf{elif}\;y \leq 2.6 \cdot 10^{+138}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;y \leq 8 \cdot 10^{+278}:\\
\;\;\;\;x + y\\
\mathbf{elif}\;y \leq 6.4 \cdot 10^{+293}:\\
\;\;\;\;x \cdot y\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 86.5% |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1 \cdot 10^{+24}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;y \leq 1:\\
\;\;\;\;x + y\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(x + 1\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 86.5% |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.1 \cdot 10^{+25}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;y \leq 1:\\
\;\;\;\;x + y\\
\mathbf{else}:\\
\;\;\;\;y + x \cdot y\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 48.2% |
|---|
| Cost | 460 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq 2.9 \cdot 10^{-158}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 1.25 \cdot 10^{-86}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 4.7 \cdot 10^{-39}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[y + \left(x + x \cdot y\right)
\]