| Alternative 1 |
|---|
| Accuracy | 73.5% |
|---|
| Cost | 984 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;y \leq 7.8 \cdot 10^{-85}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 1.15 \cdot 10^{-50}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 1.5 \cdot 10^{-34}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 4.9 \cdot 10^{+220}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 9 \cdot 10^{+246}:\\
\;\;\;\;x \cdot y\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 86.3% |
|---|
| Cost | 589 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -500000000000 \lor \neg \left(y \leq 4.9 \cdot 10^{+220}\right) \land y \leq 9 \cdot 10^{+246}:\\
\;\;\;\;x \cdot y\\
\mathbf{else}:\\
\;\;\;\;x + y\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 98.4% |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.75 \cdot 10^{+15}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;y \leq 0.0082:\\
\;\;\;\;x + y\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(x + 1\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 99.3% |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1:\\
\;\;\;\;x \cdot \left(y + 1\right)\\
\mathbf{elif}\;x \leq 3.5 \cdot 10^{-205}:\\
\;\;\;\;x + y\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(x + 1\right)\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 99.3% |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1:\\
\;\;\;\;x + x \cdot y\\
\mathbf{elif}\;x \leq 3.5 \cdot 10^{-205}:\\
\;\;\;\;x + y\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(x + 1\right)\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 71.9% |
|---|
| Cost | 460 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq 2.25 \cdot 10^{-85}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 6.6 \cdot 10^{-52}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 1.5 \cdot 10^{-34}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 7 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[x + y \cdot \left(x + 1\right)
\]