| Alternative 1 |
|---|
| Accuracy | 79.5% |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(z - x\right)\\
\mathbf{if}\;y \leq -1.75 \cdot 10^{-81}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 7.8 \cdot 10^{-57}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 9 \cdot 10^{-26}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 14500000:\\
\;\;\;\;x \cdot \left(1 - y\right)\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 61.3% |
|---|
| Cost | 784 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -5.5 \cdot 10^{-82}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 4 \cdot 10^{-56}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 4.5 \cdot 10^{+54}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 4.5 \cdot 10^{+89}:\\
\;\;\;\;x \cdot \left(-y\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 79.4% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.55 \cdot 10^{-81} \lor \neg \left(y \leq 4.2 \cdot 10^{-55}\right):\\
\;\;\;\;y \cdot \left(z - x\right)\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 576 |
|---|
\[x + \left(y \cdot z - y \cdot x\right)
\]
| Alternative 5 |
|---|
| Accuracy | 61.6% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.85 \cdot 10^{-81}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 2.1 \cdot 10^{-55}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[x + y \cdot \left(z - x\right)
\]