| Alternative 1 |
|---|
| Error | 17.3 |
|---|
| Cost | 976 |
|---|
\[\begin{array}{l}
t_0 := 1 + -2 \cdot \frac{y}{x}\\
\mathbf{if}\;y \leq -1.3260593624321216 \cdot 10^{+45}:\\
\;\;\;\;-1\\
\mathbf{elif}\;y \leq 4.899662432827473 \cdot 10^{-99}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 2.182270397526762 \cdot 10^{-33}:\\
\;\;\;\;-1\\
\mathbf{elif}\;y \leq 7.298238914889761 \cdot 10^{+80}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;-1\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 17.0 |
|---|
| 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 -1.3260593624321216 \cdot 10^{+45}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 4.899662432827473 \cdot 10^{-99}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq 2.182270397526762 \cdot 10^{-33}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 7.298238914889761 \cdot 10^{+80}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 17.8 |
|---|
| Cost | 856 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.3260593624321216 \cdot 10^{+45}:\\
\;\;\;\;-1\\
\mathbf{elif}\;y \leq 4.899662432827473 \cdot 10^{-99}:\\
\;\;\;\;1\\
\mathbf{elif}\;y \leq 2.182270397526762 \cdot 10^{-33}:\\
\;\;\;\;-1\\
\mathbf{elif}\;y \leq 153162955687192540:\\
\;\;\;\;1\\
\mathbf{elif}\;y \leq 8 \cdot 10^{+39}:\\
\;\;\;\;-1\\
\mathbf{elif}\;y \leq 7.298238914889761 \cdot 10^{+80}:\\
\;\;\;\;1\\
\mathbf{else}:\\
\;\;\;\;-1\\
\end{array}
\]