| Alternative 1 |
|---|
| Accuracy | 72.6% |
|---|
| Cost | 850 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -10.5 \lor \neg \left(x \leq -7 \cdot 10^{-97} \lor \neg \left(x \leq -4.5 \cdot 10^{-153}\right) \land x \leq 2.1 \cdot 10^{-58}\right):\\
\;\;\;\;x \cdot \left(1 - z\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 80.7% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -88000 \lor \neg \left(z \leq 4.2 \cdot 10^{-68}\right):\\
\;\;\;\;\left(y - x\right) \cdot z\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(1 - z\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 98.5% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1 \lor \neg \left(z \leq 9.5 \cdot 10^{-6}\right):\\
\;\;\;\;\left(y - x\right) \cdot z\\
\mathbf{else}:\\
\;\;\;\;x + y \cdot z\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 62.9% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -8.9 \cdot 10^{-44}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 8.5 \cdot 10^{-89}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[x + \left(y - x\right) \cdot z
\]