| Alternative 1 |
|---|
| Accuracy | 69.2% |
|---|
| Cost | 1224 |
|---|
\[\begin{array}{l}
\mathbf{if}\;a \cdot x \leq 5 \cdot 10^{-10}:\\
\;\;\;\;a \cdot x\\
\mathbf{elif}\;a \cdot x \leq 5 \cdot 10^{+73}:\\
\;\;\;\;a \cdot \left(x + a \cdot \left(x \cdot \left(x \cdot 0.5\right)\right)\right)\\
\mathbf{else}:\\
\;\;\;\;\left(0.5 \cdot \left(a \cdot a\right)\right) \cdot \left(x \cdot x\right)\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 68.3% |
|---|
| Cost | 836 |
|---|
\[\begin{array}{l}
\mathbf{if}\;a \cdot x \leq 0.001:\\
\;\;\;\;a \cdot x\\
\mathbf{else}:\\
\;\;\;\;a \cdot \left(\left(a \cdot 0.5\right) \cdot \left(x \cdot x\right)\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 68.0% |
|---|
| Cost | 836 |
|---|
\[\begin{array}{l}
\mathbf{if}\;a \cdot x \leq 2 \cdot 10^{+41}:\\
\;\;\;\;a \cdot x\\
\mathbf{else}:\\
\;\;\;\;\left(0.5 \cdot \left(a \cdot a\right)\right) \cdot \left(x \cdot x\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 66.1% |
|---|
| Cost | 836 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.22 \cdot 10^{-249}:\\
\;\;\;\;x \cdot \left(a + x \cdot \left(a \cdot \left(a \cdot 0.5\right)\right)\right)\\
\mathbf{else}:\\
\;\;\;\;a \cdot \left(x \cdot \left(1 + a \cdot \left(x \cdot 0.5\right)\right)\right)\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 66.2% |
|---|
| Cost | 836 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.05 \cdot 10^{-247}:\\
\;\;\;\;x \cdot \left(a + x \cdot \left(a \cdot \left(a \cdot 0.5\right)\right)\right)\\
\mathbf{else}:\\
\;\;\;\;a \cdot \left(x + \left(a \cdot x\right) \cdot \left(x \cdot 0.5\right)\right)\\
\end{array}
\]