| Alternative 1 |
|---|
| Accuracy | 62.4% |
|---|
| Cost | 1312 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(-z\right)\\
\mathbf{if}\;x \leq -4.5 \cdot 10^{+111}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -6.4 \cdot 10^{+53}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq -1:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -4.1 \cdot 10^{-50}:\\
\;\;\;\;z\\
\mathbf{elif}\;x \leq -5.4 \cdot 10^{-70}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 6.6 \cdot 10^{-15}:\\
\;\;\;\;z\\
\mathbf{elif}\;x \leq 1.1 \cdot 10^{+71}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 5.8 \cdot 10^{+224}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 59.1% |
|---|
| Cost | 720 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1.45 \cdot 10^{-54}:\\
\;\;\;\;z\\
\mathbf{elif}\;z \leq 6.3 \cdot 10^{-149}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;z \leq 2 \cdot 10^{-56}:\\
\;\;\;\;z\\
\mathbf{elif}\;z \leq 2.9 \cdot 10^{+43}:\\
\;\;\;\;x \cdot y\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 79.9% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.2 \cdot 10^{-73} \lor \neg \left(x \leq 2.85 \cdot 10^{-16}\right):\\
\;\;\;\;x \cdot \left(y - z\right)\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 98.6% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1 \lor \neg \left(x \leq 1\right):\\
\;\;\;\;x \cdot \left(y - z\right)\\
\mathbf{else}:\\
\;\;\;\;z + x \cdot y\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[z + x \cdot \left(y - z\right)
\]