| Alternative 1 |
|---|
| Accuracy | 70.0% |
|---|
| Cost | 656 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4.4 \cdot 10^{+85}:\\
\;\;\;\;-x\\
\mathbf{elif}\;x \leq -1.7 \cdot 10^{+29}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq -1.5 \cdot 10^{-23}:\\
\;\;\;\;-x\\
\mathbf{elif}\;x \leq 2.2 \cdot 10^{-47}:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;-x\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 84.5% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -2.35 \cdot 10^{-17} \lor \neg \left(y \leq 6.5 \cdot 10^{-52}\right):\\
\;\;\;\;y \cdot \left(x + 1\right)\\
\mathbf{else}:\\
\;\;\;\;-x\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 83.7% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -3.1 \cdot 10^{-23} \lor \neg \left(x \leq 1.45 \cdot 10^{-84}\right):\\
\;\;\;\;x \cdot \left(y + -1\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(x + 1\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[y \cdot \left(x + 1\right) - x
\]
| Alternative 5 |
|---|
| Accuracy | 70.3% |
|---|
| Cost | 392 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -5.4 \cdot 10^{-22}:\\
\;\;\;\;-x\\
\mathbf{elif}\;x \leq 2.1 \cdot 10^{-47}:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;-x\\
\end{array}
\]