| Alternative 1 |
|---|
| Accuracy | 97.8% |
|---|
| Cost | 7561 |
|---|
\[\begin{array}{l}
\mathbf{if}\;a \leq -0.0052 \lor \neg \left(a \leq 2100\right):\\
\;\;\;\;-1 + \left({a}^{4} + \left(a \cdot a\right) \cdot \left(\left(b \cdot b\right) \cdot 2\right)\right)\\
\mathbf{else}:\\
\;\;\;\;-1 + \left(4 \cdot \left(b \cdot b\right) + {b}^{4}\right)\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 99.7% |
|---|
| Cost | 7424 |
|---|
\[-1 + \left({\left(b \cdot b + a \cdot a\right)}^{2} + 4 \cdot \left(b \cdot b\right)\right)
\]
| Alternative 3 |
|---|
| Accuracy | 97.6% |
|---|
| Cost | 7364 |
|---|
\[\begin{array}{l}
t_0 := \left(b \cdot b\right) \cdot 2\\
\mathbf{if}\;a \leq -0.00032:\\
\;\;\;\;-1 + \left(a \cdot a\right) \cdot \mathsf{fma}\left(a, a, t_0\right)\\
\mathbf{elif}\;a \leq 2100:\\
\;\;\;\;-1 + \left(4 \cdot \left(b \cdot b\right) + {b}^{4}\right)\\
\mathbf{else}:\\
\;\;\;\;-1 + \left(\left(a \cdot a\right) \cdot t_0 + \left(a \cdot a\right) \cdot \left(a \cdot a\right)\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 97.6% |
|---|
| Cost | 7305 |
|---|
\[\begin{array}{l}
\mathbf{if}\;a \leq -0.0037 \lor \neg \left(a \leq 2100\right):\\
\;\;\;\;-1 + \left(\left(a \cdot a\right) \cdot \left(\left(b \cdot b\right) \cdot 2\right) + \left(a \cdot a\right) \cdot \left(a \cdot a\right)\right)\\
\mathbf{else}:\\
\;\;\;\;-1 + \left(4 \cdot \left(b \cdot b\right) + {b}^{4}\right)\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 97.5% |
|---|
| Cost | 7241 |
|---|
\[\begin{array}{l}
\mathbf{if}\;a \leq -0.00033 \lor \neg \left(a \leq 2100\right):\\
\;\;\;\;-1 + \left(\left(a \cdot a\right) \cdot \left(\left(b \cdot b\right) \cdot 2\right) + \left(a \cdot a\right) \cdot \left(a \cdot a\right)\right)\\
\mathbf{else}:\\
\;\;\;\;-1 + b \cdot \left(b \cdot \mathsf{fma}\left(b, b, 4\right)\right)\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 97.5% |
|---|
| Cost | 1481 |
|---|
\[\begin{array}{l}
\mathbf{if}\;a \leq -0.0013 \lor \neg \left(a \leq 2100\right):\\
\;\;\;\;-1 + \left(\left(a \cdot a\right) \cdot \left(\left(b \cdot b\right) \cdot 2\right) + \left(a \cdot a\right) \cdot \left(a \cdot a\right)\right)\\
\mathbf{else}:\\
\;\;\;\;-1 + \left(b \cdot b\right) \cdot \left(4 + b \cdot b\right)\\
\end{array}
\]
| Alternative 7 |
|---|
| Accuracy | 97.4% |
|---|
| Cost | 969 |
|---|
\[\begin{array}{l}
\mathbf{if}\;a \leq -0.00165 \lor \neg \left(a \leq 2100\right):\\
\;\;\;\;-1 + \left(a \cdot a\right) \cdot \left(a \cdot a\right)\\
\mathbf{else}:\\
\;\;\;\;-1 + \left(b \cdot b\right) \cdot \left(4 + b \cdot b\right)\\
\end{array}
\]
| Alternative 8 |
|---|
| Accuracy | 81.3% |
|---|
| Cost | 713 |
|---|
\[\begin{array}{l}
\mathbf{if}\;a \leq -1 \lor \neg \left(a \leq 2100\right):\\
\;\;\;\;\left(a \cdot a\right) \cdot \left(a \cdot a\right)\\
\mathbf{else}:\\
\;\;\;\;-1 + b \cdot \left(b \cdot 4\right)\\
\end{array}
\]
| Alternative 9 |
|---|
| Accuracy | 80.1% |
|---|
| Cost | 708 |
|---|
\[\begin{array}{l}
\mathbf{if}\;a \cdot a \leq 1:\\
\;\;\;\;-1\\
\mathbf{else}:\\
\;\;\;\;\left(a \cdot a\right) \cdot \left(a \cdot a\right)\\
\end{array}
\]
| Alternative 10 |
|---|
| Accuracy | 80.8% |
|---|
| Cost | 576 |
|---|
\[-1 + \left(a \cdot a\right) \cdot \left(a \cdot a\right)
\]