| Alternative 1 |
|---|
| Accuracy | 99.3% |
|---|
| Cost | 7044 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -3.7:\\
\;\;\;\;\left(1 + 24 \cdot {x}^{-4}\right) + -1\\
\mathbf{elif}\;x \leq 350:\\
\;\;\;\;\frac{2}{2 + x \cdot x}\\
\mathbf{else}:\\
\;\;\;\;0\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 98.6% |
|---|
| Cost | 6976 |
|---|
\[\left(1 + \frac{2}{\mathsf{fma}\left(x, x, 2\right)}\right) + -1
\]
| Alternative 3 |
|---|
| Accuracy | 99.3% |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.4:\\
\;\;\;\;0\\
\mathbf{elif}\;x \leq 1.4:\\
\;\;\;\;1 + \left(x \cdot x\right) \cdot -0.5\\
\mathbf{else}:\\
\;\;\;\;0\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 99.4% |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -360:\\
\;\;\;\;0\\
\mathbf{elif}\;x \leq 350:\\
\;\;\;\;\frac{2}{2 + x \cdot x}\\
\mathbf{else}:\\
\;\;\;\;0\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 59.3% |
|---|
| Cost | 328 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -360:\\
\;\;\;\;0\\
\mathbf{elif}\;x \leq 350:\\
\;\;\;\;0.5\\
\mathbf{else}:\\
\;\;\;\;0\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 99.1% |
|---|
| Cost | 328 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -360:\\
\;\;\;\;0\\
\mathbf{elif}\;x \leq 350:\\
\;\;\;\;1\\
\mathbf{else}:\\
\;\;\;\;0\\
\end{array}
\]