| Alternative 1 |
|---|
| Accuracy | 63.2% |
|---|
| Cost | 784 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(-x\right)\\
\mathbf{if}\;y \leq -1:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 1.55 \cdot 10^{-34}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 2.3 \cdot 10^{+59}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 2.9 \cdot 10^{+66}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 67.9% |
|---|
| Cost | 717 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -17 \lor \neg \left(x \leq -3 \cdot 10^{-19}\right) \land x \leq -1.26 \cdot 10^{-159}:\\
\;\;\;\;x \cdot \left(1 - y\right)\\
\mathbf{else}:\\
\;\;\;\;y - x \cdot y\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 81.3% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.26 \cdot 10^{-159} \lor \neg \left(x \leq 0.08\right):\\
\;\;\;\;x \cdot \left(1 - y\right)\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 53.5% |
|---|
| Cost | 460 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -9.2 \cdot 10^{-8}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq -9.5 \cdot 10^{-21}:\\
\;\;\;\;y\\
\mathbf{elif}\;x \leq -1.26 \cdot 10^{-159}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[\left(x + y\right) - x \cdot y
\]