| Alternative 1 |
|---|
| Accuracy | 60.3% |
|---|
| Cost | 1116 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -3.75 \cdot 10^{+205}:\\
\;\;\;\;-x\\
\mathbf{elif}\;x \leq -8 \cdot 10^{+89}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq -1.55 \cdot 10^{-12}:\\
\;\;\;\;-x\\
\mathbf{elif}\;x \leq 5.1 \cdot 10^{-145}:\\
\;\;\;\;y\\
\mathbf{elif}\;x \leq 2.45 \cdot 10^{-77}:\\
\;\;\;\;-x\\
\mathbf{elif}\;x \leq 510:\\
\;\;\;\;y\\
\mathbf{elif}\;x \leq 8 \cdot 10^{+137}:\\
\;\;\;\;x \cdot y\\
\mathbf{else}:\\
\;\;\;\;-x\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 75.1% |
|---|
| Cost | 852 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.9 \cdot 10^{+62}:\\
\;\;\;\;y - x\\
\mathbf{elif}\;y \leq -960000:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;y \leq 1.4 \cdot 10^{+14}:\\
\;\;\;\;y - x\\
\mathbf{elif}\;y \leq 3.5 \cdot 10^{+184}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;y \leq 1.92 \cdot 10^{+273}:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 60.7% |
|---|
| Cost | 656 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -9.8 \cdot 10^{-11}:\\
\;\;\;\;-x\\
\mathbf{elif}\;x \leq 5.1 \cdot 10^{-145}:\\
\;\;\;\;y\\
\mathbf{elif}\;x \leq 4.2 \cdot 10^{-77}:\\
\;\;\;\;-x\\
\mathbf{elif}\;x \leq 3.8 \cdot 10^{-31}:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;-x\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 98.8% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1 \lor \neg \left(y \leq 1\right):\\
\;\;\;\;y \cdot \left(x + 1\right)\\
\mathbf{else}:\\
\;\;\;\;y - x\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 98.9% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -840 \lor \neg \left(x \leq 1\right):\\
\;\;\;\;x \cdot \left(y + -1\right)\\
\mathbf{else}:\\
\;\;\;\;y - x\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[y \cdot \left(x + 1\right) - x
\]