| Alternative 1 |
|---|
| Accuracy | 73.2% |
|---|
| Cost | 1112 |
|---|
\[\begin{array}{l}
t_0 := 1 - \frac{y}{x}\\
\mathbf{if}\;x \leq -5 \cdot 10^{-40}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -6 \cdot 10^{-96}:\\
\;\;\;\;-1\\
\mathbf{elif}\;x \leq -6 \cdot 10^{-124}:\\
\;\;\;\;1\\
\mathbf{elif}\;x \leq 6.2 \cdot 10^{-149}:\\
\;\;\;\;-1\\
\mathbf{elif}\;x \leq 7.8 \cdot 10^{-128}:\\
\;\;\;\;1\\
\mathbf{elif}\;x \leq 3.8 \cdot 10^{-26}:\\
\;\;\;\;-1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 73.8% |
|---|
| Cost | 976 |
|---|
\[\begin{array}{l}
t_0 := 1 - \frac{y}{x}\\
t_1 := 2 \cdot \frac{x}{y} + -1\\
\mathbf{if}\;x \leq -4.2 \cdot 10^{-32}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -3.4 \cdot 10^{-105}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;x \leq -6 \cdot 10^{-124}:\\
\;\;\;\;1\\
\mathbf{elif}\;x \leq 10^{+71}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 72.7% |
|---|
| Cost | 856 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -9 \cdot 10^{-39}:\\
\;\;\;\;1\\
\mathbf{elif}\;x \leq -1.12 \cdot 10^{-94}:\\
\;\;\;\;-1\\
\mathbf{elif}\;x \leq -3.5 \cdot 10^{-124}:\\
\;\;\;\;1\\
\mathbf{elif}\;x \leq 5.5 \cdot 10^{-149}:\\
\;\;\;\;-1\\
\mathbf{elif}\;x \leq 7.8 \cdot 10^{-128}:\\
\;\;\;\;1\\
\mathbf{elif}\;x \leq 5.9 \cdot 10^{-43}:\\
\;\;\;\;-1\\
\mathbf{else}:\\
\;\;\;\;1\\
\end{array}
\]