| Alternative 1 |
|---|
| Accuracy | 62.6% |
|---|
| Cost | 852 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.9 \cdot 10^{+181}:\\
\;\;\;\;y \cdot \left(-x\right)\\
\mathbf{elif}\;y \leq -7.5 \cdot 10^{-5}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq -2.25 \cdot 10^{-57}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq -2.4 \cdot 10^{-76}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 10^{-9}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 80.7% |
|---|
| Cost | 850 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -0.00155 \lor \neg \left(y \leq -3.2 \cdot 10^{-57} \lor \neg \left(y \leq -9.2 \cdot 10^{-77}\right) \land y \leq 1.2\right):\\
\;\;\;\;y \cdot \left(z - x\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(1 - y\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 62.9% |
|---|
| Cost | 720 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -4.5 \cdot 10^{-5}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq -7.5 \cdot 10^{-57}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq -1.55 \cdot 10^{-76}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 5.8 \cdot 10^{-7}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 74.8% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.5 \cdot 10^{-141} \lor \neg \left(x \leq 4.5 \cdot 10^{-152}\right):\\
\;\;\;\;x \cdot \left(1 - y\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 97.9% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.5 \cdot 10^{+28} \lor \neg \left(y \leq 1\right):\\
\;\;\;\;y \cdot \left(z - x\right)\\
\mathbf{else}:\\
\;\;\;\;x + y \cdot z\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[x + y \cdot \left(z - x\right)
\]