| Alternative 1 |
|---|
| Error | 1.6 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := -1 + \frac{-2}{x}\\
\mathbf{if}\;x \leq -2737.7937741464616:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 2.0683805937586775 \cdot 10^{-16}:\\
\;\;\;\;1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 1.4 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := -1 + \frac{-2}{x}\\
\mathbf{if}\;x \leq -0.9858516138848535:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 2.0683805937586775 \cdot 10^{-16}:\\
\;\;\;\;1 + x \cdot 2\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 2.0 |
|---|
| Cost | 328 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2737.7937741464616:\\
\;\;\;\;-1\\
\mathbf{elif}\;x \leq 2.0683805937586775 \cdot 10^{-16}:\\
\;\;\;\;1\\
\mathbf{else}:\\
\;\;\;\;-1\\
\end{array}
\]