| Alternative 1 |
|---|
| Accuracy | 80.2% |
|---|
| Cost | 1881 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \left(-x\right)\\
\mathbf{if}\;1 - z \leq -1 \cdot 10^{+219}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;1 - z \leq -5 \cdot 10^{+189}:\\
\;\;\;\;z \cdot \left(-y\right)\\
\mathbf{elif}\;1 - z \leq -500000000:\\
\;\;\;\;t_0\\
\mathbf{elif}\;1 - z \leq 1:\\
\;\;\;\;y + x\\
\mathbf{elif}\;1 - z \leq 5 \cdot 10^{+163} \lor \neg \left(1 - z \leq 2 \cdot 10^{+200}\right):\\
\;\;\;\;\left(1 - z\right) \cdot y\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 80.0% |
|---|
| Cost | 785 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \left(-y\right)\\
\mathbf{if}\;z \leq -8:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 1:\\
\;\;\;\;y + x\\
\mathbf{elif}\;z \leq 3.5 \cdot 10^{+187} \lor \neg \left(z \leq 1.08 \cdot 10^{+215}\right):\\
\;\;\;\;z \cdot \left(-x\right)\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 704 |
|---|
\[\left(1 - z\right) \cdot x + \left(1 - z\right) \cdot y
\]
| Alternative 4 |
|---|
| Accuracy | 97.3% |
|---|
| Cost | 649 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1 \lor \neg \left(z \leq 1\right):\\
\;\;\;\;z \cdot \left(\left(-x\right) - y\right)\\
\mathbf{else}:\\
\;\;\;\;y + x\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 79.3% |
|---|
| Cost | 521 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -2800000000 \lor \neg \left(z \leq 1\right):\\
\;\;\;\;z \cdot \left(-x\right)\\
\mathbf{else}:\\
\;\;\;\;y + x\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 51.2% |
|---|
| Cost | 460 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq 1.32 \cdot 10^{-86}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 25000:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 2.8 \cdot 10^{+23}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 7 |
|---|
| Accuracy | 80.6% |
|---|
| Cost | 452 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.2 \cdot 10^{-103}:\\
\;\;\;\;x - z \cdot x\\
\mathbf{else}:\\
\;\;\;\;\left(1 - z\right) \cdot y\\
\end{array}
\]
| Alternative 8 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[\left(1 - z\right) \cdot \left(y + x\right)
\]