| Alternative 1 |
|---|
| Accuracy | 81.2% |
|---|
| Cost | 977 |
|---|
\[\begin{array}{l}
t_0 := x \cdot x + y \cdot y\\
\mathbf{if}\;x \leq -3.2 \cdot 10^{-86}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 6.5 \cdot 10^{-155}:\\
\;\;\;\;3 \cdot \left(y \cdot y\right)\\
\mathbf{elif}\;x \leq 9 \cdot 10^{-121} \lor \neg \left(x \leq 4 \cdot 10^{-37}\right):\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(y \cdot 3\right)\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 79.5% |
|---|
| Cost | 849 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.35 \cdot 10^{-86}:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq 7.2 \cdot 10^{-155} \lor \neg \left(x \leq 1.7 \cdot 10^{-120}\right) \land x \leq 3.5 \cdot 10^{-37}:\\
\;\;\;\;3 \cdot \left(y \cdot y\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 79.5% |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -3.9 \cdot 10^{-86}:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq 7.2 \cdot 10^{-155}:\\
\;\;\;\;3 \cdot \left(y \cdot y\right)\\
\mathbf{elif}\;x \leq 8.6 \cdot 10^{-122}:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq 2.8 \cdot 10^{-34}:\\
\;\;\;\;y \cdot \left(y \cdot 3\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 99.8% |
|---|
| Cost | 576 |
|---|
\[y \cdot \left(y \cdot 3\right) + x \cdot x
\]
| Alternative 5 |
|---|
| Accuracy | 60.2% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.3 \cdot 10^{-159}:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq 4.5 \cdot 10^{-155}:\\
\;\;\;\;y \cdot y\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]