| Alternative 1 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 7112 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2 \cdot 10^{+24}:\\
\;\;\;\;\frac{1}{x}\\
\mathbf{elif}\;x \leq 10000:\\
\;\;\;\;x \cdot \frac{1}{\mathsf{fma}\left(x, x, 1\right)}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{x} - {x}^{-3}\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 7048 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2 \cdot 10^{+66}:\\
\;\;\;\;\frac{1}{x}\\
\mathbf{elif}\;x \leq 20000:\\
\;\;\;\;\frac{x}{1 + x \cdot x}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{x} - {x}^{-3}\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2 \cdot 10^{+66}:\\
\;\;\;\;\frac{1}{x}\\
\mathbf{elif}\;x \leq 20000000:\\
\;\;\;\;\frac{x}{1 + x \cdot x}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{x}\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 99.0% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1:\\
\;\;\;\;\frac{1}{x}\\
\mathbf{elif}\;x \leq 1:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{x}\\
\end{array}
\]