| Alternative 1 |
|---|
| Accuracy | 72.6% |
|---|
| Cost | 978 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -3700 \lor \neg \left(x \leq 6.3 \cdot 10^{-145} \lor \neg \left(x \leq 3.75 \cdot 10^{-31}\right) \land x \leq 4.5 \cdot 10^{+15}\right):\\
\;\;\;\;1 + 2 \cdot \frac{y}{x}\\
\mathbf{else}:\\
\;\;\;\;-1\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 72.9% |
|---|
| Cost | 978 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.3 \cdot 10^{+17} \lor \neg \left(x \leq 6.3 \cdot 10^{-145} \lor \neg \left(x \leq 4.2 \cdot 10^{-31}\right) \land x \leq 3.9 \cdot 10^{+15}\right):\\
\;\;\;\;1 + 2 \cdot \frac{y}{x}\\
\mathbf{else}:\\
\;\;\;\;-2 \cdot \frac{x}{y} + -1\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 72.1% |
|---|
| Cost | 592 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -100:\\
\;\;\;\;1\\
\mathbf{elif}\;x \leq 6.3 \cdot 10^{-145}:\\
\;\;\;\;-1\\
\mathbf{elif}\;x \leq 3.2 \cdot 10^{-31}:\\
\;\;\;\;1\\
\mathbf{elif}\;x \leq 4 \cdot 10^{+15}:\\
\;\;\;\;-1\\
\mathbf{else}:\\
\;\;\;\;1\\
\end{array}
\]