| Alternative 1 |
|---|
| Error | 1.7 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := \frac{-1}{x \cdot x}\\
\mathbf{if}\;x \leq -19066116700.543564:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 0.005767931019882457:\\
\;\;\;\;\frac{-1 + x}{x}\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 1.7 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := \frac{-1}{x \cdot x}\\
\mathbf{if}\;x \leq -19066116700.543564:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 0.005767931019882457:\\
\;\;\;\;1 + \frac{-1}{x}\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 1.4 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := \frac{\frac{-1}{x}}{x}\\
\mathbf{if}\;x \leq -19066116700.543564:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 0.005767931019882457:\\
\;\;\;\;1 + \frac{-1}{x}\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.4 |
|---|
| Cost | 448 |
|---|
\[\frac{-1}{x + x \cdot x}
\]