| Alternative 1 |
|---|
| Error | 17.7 |
|---|
| Cost | 976 |
|---|
\[\begin{array}{l}
t_0 := 1 + -2 \cdot \frac{y}{x}\\
\mathbf{if}\;y \leq -4 \cdot 10^{+87}:\\
\;\;\;\;-1\\
\mathbf{elif}\;y \leq 1.12 \cdot 10^{-113}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 1.95 \cdot 10^{-48}:\\
\;\;\;\;-1\\
\mathbf{elif}\;y \leq 9.2 \cdot 10^{-30}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;-1\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 17.4 |
|---|
| 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 -3.7 \cdot 10^{+87}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 1.12 \cdot 10^{-113}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq 1.95 \cdot 10^{-48}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 2.2 \cdot 10^{-29}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 17.5 |
|---|
| Cost | 592 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -95000000000:\\
\;\;\;\;-1\\
\mathbf{elif}\;y \leq 10^{-113}:\\
\;\;\;\;1\\
\mathbf{elif}\;y \leq 10^{-47}:\\
\;\;\;\;-1\\
\mathbf{elif}\;y \leq 1.2 \cdot 10^{-28}:\\
\;\;\;\;1\\
\mathbf{else}:\\
\;\;\;\;-1\\
\end{array}
\]