| Alternative 1 |
|---|
| Accuracy | 70.8% |
|---|
| Cost | 849 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.6 \cdot 10^{+58}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq -3.15 \cdot 10^{-27} \lor \neg \left(y \leq -8.2 \cdot 10^{-39}\right) \land y \leq 9 \cdot 10^{+105}:\\
\;\;\;\;x \cdot \left(1 - z\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 63.7% |
|---|
| Cost | 652 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -5 \cdot 10^{-7}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 1.42 \cdot 10^{-50}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq 4.8 \cdot 10^{+85}:\\
\;\;\;\;y \cdot z\\
\mathbf{else}:\\
\;\;\;\;z \cdot \left(-x\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 81.3% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1.6 \cdot 10^{-5} \lor \neg \left(z \leq 6.6 \cdot 10^{-41}\right):\\
\;\;\;\;\left(y - x\right) \cdot z\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(1 - z\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 98.6% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -30000 \lor \neg \left(z \leq 1\right):\\
\;\;\;\;\left(y - x\right) \cdot z\\
\mathbf{else}:\\
\;\;\;\;x + y \cdot z\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 576 |
|---|
\[x + \left(y \cdot z - x \cdot z\right)
\]
| Alternative 6 |
|---|
| Accuracy | 63.9% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -5.4 \cdot 10^{-7}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 1.35 \cdot 10^{-50}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 7 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[x + \left(y - x\right) \cdot z
\]