| Alternative 1 |
|---|
| Error | 1.2 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := -1 + \frac{-2}{x}\\
\mathbf{if}\;x \leq -558.1019768123572:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 1.7588418466906802 \cdot 10^{-6}:\\
\;\;\;\;1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 0.9 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := -1 + \frac{-2}{x}\\
\mathbf{if}\;x \leq -558.1019768123572:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 1.7588418466906802 \cdot 10^{-6}:\\
\;\;\;\;1 + x \cdot 2\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 1.5 |
|---|
| Cost | 328 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -558.1019768123572:\\
\;\;\;\;-1\\
\mathbf{elif}\;x \leq 1.7588418466906802 \cdot 10^{-6}:\\
\;\;\;\;1\\
\mathbf{else}:\\
\;\;\;\;-1\\
\end{array}
\]