| Alternative 1 |
|---|
| Error | 1.1 |
|---|
| Cost | 840 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -238636601428031.38:\\
\;\;\;\;1\\
\mathbf{elif}\;x \leq 0.10170565312564367:\\
\;\;\;\;\left(-1 - x\right) + \frac{x}{1 + x}\\
\mathbf{else}:\\
\;\;\;\;1 + \frac{2}{x \cdot x}\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 1.3 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -238636601428031.38:\\
\;\;\;\;1\\
\mathbf{elif}\;x \leq 0.10170565312564367:\\
\;\;\;\;x + \frac{1}{x + -1}\\
\mathbf{else}:\\
\;\;\;\;1\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 1.2 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -238636601428031.38:\\
\;\;\;\;1\\
\mathbf{elif}\;x \leq 0.10170565312564367:\\
\;\;\;\;x + \frac{1}{x + -1}\\
\mathbf{else}:\\
\;\;\;\;1 + \frac{2}{x \cdot x}\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 1.3 |
|---|
| Cost | 328 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -238636601428031.38:\\
\;\;\;\;1\\
\mathbf{elif}\;x \leq 0.10170565312564367:\\
\;\;\;\;-1\\
\mathbf{else}:\\
\;\;\;\;1\\
\end{array}
\]