| Alternative 1 |
|---|
| Error | 18.5 |
|---|
| Cost | 1240 |
|---|
\[\begin{array}{l}
t_0 := 1 + -2 \cdot \frac{y}{x}\\
\mathbf{if}\;y \leq -8.2 \cdot 10^{+44}:\\
\;\;\;\;-1\\
\mathbf{elif}\;y \leq -1.02 \cdot 10^{-10}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -1.25 \cdot 10^{-105}:\\
\;\;\;\;-1\\
\mathbf{elif}\;y \leq 9.2 \cdot 10^{-187}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 9.5 \cdot 10^{-151}:\\
\;\;\;\;-1\\
\mathbf{elif}\;y \leq 0.036:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;-1\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 18.0 |
|---|
| Cost | 1240 |
|---|
\[\begin{array}{l}
t_0 := 2 \cdot \frac{x}{y} - 1\\
t_1 := 1 + -2 \cdot \frac{y}{x}\\
\mathbf{if}\;y \leq -9.5 \cdot 10^{+42}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -2.35 \cdot 10^{-29}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq -1.25 \cdot 10^{-105}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 9.2 \cdot 10^{-187}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq 9.5 \cdot 10^{-151}:\\
\;\;\;\;-1\\
\mathbf{elif}\;y \leq 0.054:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 18.8 |
|---|
| Cost | 856 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1 \cdot 10^{+43}:\\
\;\;\;\;-1\\
\mathbf{elif}\;y \leq -1 \cdot 10^{-10}:\\
\;\;\;\;1\\
\mathbf{elif}\;y \leq -1.25 \cdot 10^{-105}:\\
\;\;\;\;-1\\
\mathbf{elif}\;y \leq 9.2 \cdot 10^{-187}:\\
\;\;\;\;1\\
\mathbf{elif}\;y \leq 9.5 \cdot 10^{-151}:\\
\;\;\;\;-1\\
\mathbf{elif}\;y \leq 0.122:\\
\;\;\;\;1\\
\mathbf{else}:\\
\;\;\;\;-1\\
\end{array}
\]