| Alternative 1 |
|---|
| Error | 16.9 |
|---|
| Cost | 976 |
|---|
\[\begin{array}{l}
t_0 := 1 + 2 \cdot \frac{y}{x}\\
\mathbf{if}\;y \leq -1.25 \cdot 10^{+80}:\\
\;\;\;\;-1\\
\mathbf{elif}\;y \leq -1150:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -4 \cdot 10^{-51}:\\
\;\;\;\;-1\\
\mathbf{elif}\;y \leq 7.2 \cdot 10^{-9}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;-1\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 16.5 |
|---|
| Cost | 976 |
|---|
\[\begin{array}{l}
t_0 := -2 \cdot \frac{x}{y} - 1\\
t_1 := 1 + 2 \cdot \frac{y}{x}\\
\mathbf{if}\;y \leq -9.2 \cdot 10^{+82}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -1150:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq -3.6 \cdot 10^{-51}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 4.1 \cdot 10^{-9}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 17.8 |
|---|
| Cost | 592 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -5.5 \cdot 10^{+92}:\\
\;\;\;\;-1\\
\mathbf{elif}\;y \leq -200000:\\
\;\;\;\;1\\
\mathbf{elif}\;y \leq -1.5 \cdot 10^{-83}:\\
\;\;\;\;-1\\
\mathbf{elif}\;y \leq 4 \cdot 10^{-9}:\\
\;\;\;\;1\\
\mathbf{else}:\\
\;\;\;\;-1\\
\end{array}
\]