| Alternative 1 |
|---|
| Error | 16.9 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -8.017600828854293 \cdot 10^{+115}:\\
\;\;\;\;1\\
\mathbf{elif}\;x \leq 2.4044147727263098 \cdot 10^{-51}:\\
\;\;\;\;-2 \cdot \frac{x}{y} + -1\\
\mathbf{else}:\\
\;\;\;\;1\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 16.6 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
t_0 := 1 + 2 \cdot \frac{y}{x}\\
\mathbf{if}\;x \leq -8.017600828854293 \cdot 10^{+115}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 2.4044147727263098 \cdot 10^{-51}:\\
\;\;\;\;-2 \cdot \frac{x}{y} + -1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 17.3 |
|---|
| Cost | 328 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -8.017600828854293 \cdot 10^{+115}:\\
\;\;\;\;1\\
\mathbf{elif}\;x \leq 5.51047261192526 \cdot 10^{-56}:\\
\;\;\;\;-1\\
\mathbf{else}:\\
\;\;\;\;1\\
\end{array}
\]