| Alternative 1 |
|---|
| Accuracy | 86.6% |
|---|
| Cost | 845 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -0.0045 \lor \neg \left(x \leq -7 \cdot 10^{-14}\right) \land x \leq -3.8 \cdot 10^{-138}:\\
\;\;\;\;x \cdot \left(x + y \cdot 2\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(y + x \cdot 2\right)\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 86.7% |
|---|
| Cost | 844 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(x + y \cdot 2\right)\\
\mathbf{if}\;x \leq -0.004:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -4.3 \cdot 10^{-13}:\\
\;\;\;\;y \cdot y + 2 \cdot \left(y \cdot x\right)\\
\mathbf{elif}\;x \leq -5.4 \cdot 10^{-138}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(y + x \cdot 2\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 704 |
|---|
\[y \cdot y + x \cdot \left(x + y \cdot 2\right)
\]
| Alternative 4 |
|---|
| Accuracy | 87.5% |
|---|
| Cost | 580 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -5.2 \cdot 10^{-138}:\\
\;\;\;\;x \cdot \left(x + y \cdot 2\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot y\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 87.4% |
|---|
| Cost | 324 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -5.4 \cdot 10^{-138}:\\
\;\;\;\;x \cdot x\\
\mathbf{else}:\\
\;\;\;\;y \cdot y\\
\end{array}
\]