| Alternative 1 |
|---|
| Error | 1.4 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -158115409548.54633:\\
\;\;\;\;\frac{\frac{-1}{x}}{x}\\
\mathbf{elif}\;x \leq 0.036328354076812584:\\
\;\;\;\;\frac{-1}{x} + \left(1 - x\right)\\
\mathbf{else}:\\
\;\;\;\;\frac{-1}{x \cdot x}\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 2.0 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := \frac{-1}{x \cdot x}\\
\mathbf{if}\;x \leq -158115409548.54633:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 0.036328354076812584:\\
\;\;\;\;\frac{-1}{x}\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 1.6 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := \frac{-1}{x \cdot x}\\
\mathbf{if}\;x \leq -158115409548.54633:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 0.036328354076812584:\\
\;\;\;\;1 + \frac{-1}{x}\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 1.5 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -158115409548.54633:\\
\;\;\;\;\frac{\frac{-1}{x}}{x}\\
\mathbf{elif}\;x \leq 0.036328354076812584:\\
\;\;\;\;1 + \frac{-1}{x}\\
\mathbf{else}:\\
\;\;\;\;\frac{-1}{x \cdot x}\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.4 |
|---|
| Cost | 448 |
|---|
\[\frac{1}{x \cdot \left(-1 - x\right)}
\]