| Alternative 1 |
|---|
| Error | 16.9 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
t_0 := 1 + \frac{-2 \cdot y}{x}\\
\mathbf{if}\;x \leq -9.5 \cdot 10^{-11}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 6.4 \cdot 10^{-96}:\\
\;\;\;\;-1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 17.0 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
t_0 := 2 \cdot \frac{x}{y} - 1\\
\mathbf{if}\;y \leq -2.8 \cdot 10^{+90}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 9 \cdot 10^{-79}:\\
\;\;\;\;1 + \frac{-2 \cdot y}{x}\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 17.7 |
|---|
| Cost | 328 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -5 \cdot 10^{+90}:\\
\;\;\;\;-1\\
\mathbf{elif}\;y \leq 9 \cdot 10^{-79}:\\
\;\;\;\;1\\
\mathbf{else}:\\
\;\;\;\;-1\\
\end{array}
\]