| Alternative 1 |
|---|
| Accuracy | 52.8% |
|---|
| Cost | 1248 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -6.2 \cdot 10^{+50}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;z \leq -150:\\
\;\;\;\;y\\
\mathbf{elif}\;z \leq -2.8 \cdot 10^{-62}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;z \leq -8 \cdot 10^{-257}:\\
\;\;\;\;y\\
\mathbf{elif}\;z \leq 3.5 \cdot 10^{-283}:\\
\;\;\;\;y \cdot \left(-x\right)\\
\mathbf{elif}\;z \leq 1.35 \cdot 10^{+38}:\\
\;\;\;\;y\\
\mathbf{elif}\;z \leq 2.1 \cdot 10^{+170}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;z \leq 2.1 \cdot 10^{+208}:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;x \cdot z\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 70.4% |
|---|
| Cost | 1114 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -3.8 \cdot 10^{+50}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;z \leq -15.5 \lor \neg \left(z \leq -2.2 \cdot 10^{-24}\right) \land \left(z \leq 3.5 \cdot 10^{+26} \lor \neg \left(z \leq 1.75 \cdot 10^{+170}\right) \land z \leq 2.1 \cdot 10^{+208}\right):\\
\;\;\;\;y \cdot \left(1 - x\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot z\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 76.6% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -5.8 \cdot 10^{-186} \lor \neg \left(x \leq 6400000\right):\\
\;\;\;\;x \cdot \left(z - y\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(1 - x\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 98.8% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1 \lor \neg \left(x \leq 1\right):\\
\;\;\;\;x \cdot \left(z - y\right)\\
\mathbf{else}:\\
\;\;\;\;y + x \cdot z\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 58.1% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -5.8 \cdot 10^{-186}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;x \leq 0.0138:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;x \cdot z\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[y + x \cdot \left(z - y\right)
\]