| Alternative 1 |
|---|
| Error | 2.0 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := \frac{-1}{x \cdot x}\\
\mathbf{if}\;x \leq -505410841.0814072:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 6.988777504640875 \cdot 10^{-12}:\\
\;\;\;\;\frac{-1 + x}{x}\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 2.0 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := \frac{-1}{x \cdot x}\\
\mathbf{if}\;x \leq -505410841.0814072:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 6.988777504640875 \cdot 10^{-12}:\\
\;\;\;\;1 + \frac{-1}{x}\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 1.6 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := \frac{\frac{-1}{x}}{x}\\
\mathbf{if}\;x \leq -505410841.0814072:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 6.988777504640875 \cdot 10^{-12}:\\
\;\;\;\;1 + \frac{-1}{x}\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]