| Alternative 1 |
|---|
| Error | 16.5 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4.8422434101958366 \cdot 10^{+67}:\\
\;\;\;\;1\\
\mathbf{elif}\;x \leq 5.653349328641285 \cdot 10^{-17}:\\
\;\;\;\;2 \cdot \frac{x}{y} + -1\\
\mathbf{else}:\\
\;\;\;\;1\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 16.0 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
t_0 := 1 + -2 \cdot \frac{y}{x}\\
\mathbf{if}\;x \leq -4.7098634278594616 \cdot 10^{+61}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 2.960563279616785 \cdot 10^{-6}:\\
\;\;\;\;2 \cdot \frac{x}{y} + -1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 16.9 |
|---|
| Cost | 328 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4.8422434101958366 \cdot 10^{+67}:\\
\;\;\;\;1\\
\mathbf{elif}\;x \leq 5.653349328641285 \cdot 10^{-17}:\\
\;\;\;\;-1\\
\mathbf{else}:\\
\;\;\;\;1\\
\end{array}
\]