| Alternative 1 |
|---|
| Accuracy | 83.7% |
|---|
| Cost | 1101 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \cdot y \leq 2.32 \cdot 10^{-147} \lor \neg \left(y \cdot y \leq 3.9 \cdot 10^{-76}\right) \land y \cdot y \leq 6.8 \cdot 10^{-53}:\\
\;\;\;\;x \cdot \left(x + 2\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot y\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 65.4% |
|---|
| Cost | 720 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -6 \cdot 10^{-80}:\\
\;\;\;\;y \cdot y\\
\mathbf{elif}\;y \leq -3.9 \cdot 10^{-125}:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;y \leq 2.65 \cdot 10^{-157}:\\
\;\;\;\;x + x\\
\mathbf{elif}\;y \leq 4.2 \cdot 10^{-74}:\\
\;\;\;\;x \cdot x\\
\mathbf{else}:\\
\;\;\;\;y \cdot y\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 93.4% |
|---|
| Cost | 713 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.4 \cdot 10^{-9} \lor \neg \left(x \leq 0.022\right):\\
\;\;\;\;x \cdot \left(x + 2\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot y + x \cdot 2\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 98.2% |
|---|
| Cost | 713 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2 \lor \neg \left(x \leq 2\right):\\
\;\;\;\;y \cdot y + x \cdot x\\
\mathbf{else}:\\
\;\;\;\;y \cdot y + x \cdot 2\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 576 |
|---|
\[y \cdot y + x \cdot \left(x + 2\right)
\]
| Alternative 6 |
|---|
| Accuracy | 61.3% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.5:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq 0.038:\\
\;\;\;\;y \cdot y\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]