| Alternative 1 |
|---|
| Error | 2.0 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := \frac{-1}{x \cdot x}\\
\mathbf{if}\;x \leq -291147832.0563465:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 4.792282004356962 \cdot 10^{-13}:\\
\;\;\;\;\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 -291147832.0563465:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 4.792282004356962 \cdot 10^{-13}:\\
\;\;\;\;1 + \frac{-1}{x}\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 1.9 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -291147832.0563465:\\
\;\;\;\;\frac{-1}{x \cdot x}\\
\mathbf{elif}\;x \leq 4.792282004356962 \cdot 10^{-13}:\\
\;\;\;\;1 + \frac{-1}{x}\\
\mathbf{else}:\\
\;\;\;\;\frac{\frac{-1}{x}}{x}\\
\end{array}
\]