| Alternative 1 |
|---|
| Accuracy | 27.9% |
|---|
| Cost | 1048 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(-z\right)\\
\mathbf{if}\;x \leq 5.5 \cdot 10^{+216}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 1.1 \cdot 10^{+135}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 2.4 \cdot 10^{+41}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 2.15 \cdot 10^{-29}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 0.62:\\
\;\;\;\;z\\
\mathbf{elif}\;x \leq 1.9 \cdot 10^{+167}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 62.1% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq 4.2 \cdot 10^{-105} \lor \neg \left(z \leq 2.7 \cdot 10^{-134}\right):\\
\;\;\;\;z \cdot \left(1 - x\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 65.0% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq 3.9 \cdot 10^{-25} \lor \neg \left(x \leq 0.5\right):\\
\;\;\;\;x \cdot \left(y - z\right)\\
\mathbf{else}:\\
\;\;\;\;z \cdot \left(1 - x\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 64.9% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq 1 \lor \neg \left(x \leq 0.62\right):\\
\;\;\;\;x \cdot \left(y - z\right)\\
\mathbf{else}:\\
\;\;\;\;z + x \cdot y\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 41.8% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq 1.62 \cdot 10^{-21}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 5.8 \cdot 10^{-63}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[z + x \cdot \left(y - z\right)
\]