| Alternative 1 |
|---|
| Accuracy | 64.6% |
|---|
| Cost | 720 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -6 \cdot 10^{+75}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;x \leq -2.9 \cdot 10^{+40}:\\
\;\;\;\;x \cdot \left(-y\right)\\
\mathbf{elif}\;x \leq -1.35 \cdot 10^{-22}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;x \leq 1.6 \cdot 10^{-12}:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;x \cdot z\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 81.4% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.4 \cdot 10^{-23} \lor \neg \left(x \leq 2.4 \cdot 10^{-11}\right):\\
\;\;\;\;x \cdot \left(z - y\right)\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 81.5% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -8.4 \cdot 10^{-10} \lor \neg \left(x \leq 8.6 \cdot 10^{-7}\right):\\
\;\;\;\;x \cdot \left(z - y\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(1 - x\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 98.4% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -76000000 \lor \neg \left(x \leq 1.05 \cdot 10^{-6}\right):\\
\;\;\;\;x \cdot \left(z - y\right)\\
\mathbf{else}:\\
\;\;\;\;y + x \cdot z\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 64.4% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -5.5 \cdot 10^{-23}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;x \leq 1.7 \cdot 10^{-12}:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;x \cdot z\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[y + x \cdot \left(z - y\right)
\]