| Alternative 1 |
|---|
| Accuracy | 63.0% |
|---|
| Cost | 916 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -3.8 \cdot 10^{-14}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq -2.5 \cdot 10^{-52}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq -2.7 \cdot 10^{-111}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 6.6 \cdot 10^{-36}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq 3.2 \cdot 10^{+89}:\\
\;\;\;\;y \cdot z\\
\mathbf{else}:\\
\;\;\;\;z \cdot \left(-x\right)\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 74.6% |
|---|
| Cost | 850 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -8.8 \cdot 10^{-98} \lor \neg \left(x \leq 6.5 \cdot 10^{-106}\right) \land \left(x \leq 7.8 \cdot 10^{-13} \lor \neg \left(x \leq 38\right)\right):\\
\;\;\;\;x \cdot \left(1 - z\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 62.9% |
|---|
| Cost | 720 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1.05 \cdot 10^{-14}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq -9.5 \cdot 10^{-53}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq -5.2 \cdot 10^{-112}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 1.72 \cdot 10^{-37}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 79.7% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -4.2 \cdot 10^{-115} \lor \neg \left(z \leq 1.75 \cdot 10^{-35}\right):\\
\;\;\;\;\left(y - x\right) \cdot z\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(1 - z\right)\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 98.2% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -14500000000 \lor \neg \left(z \leq 5.5 \cdot 10^{-10}\right):\\
\;\;\;\;\left(y - x\right) \cdot z\\
\mathbf{else}:\\
\;\;\;\;x + y \cdot z\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[x + \left(y - x\right) \cdot z
\]