| Alternative 1 |
|---|
| Accuracy | 49.5% |
|---|
| Cost | 1248 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -4.6 \cdot 10^{+100}:\\
\;\;\;\;z \cdot y\\
\mathbf{elif}\;z \leq -2.7 \cdot 10^{+84}:\\
\;\;\;\;z \cdot x\\
\mathbf{elif}\;z \leq -1:\\
\;\;\;\;z \cdot y\\
\mathbf{elif}\;z \leq -3.9 \cdot 10^{-205}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq 1.15 \cdot 10^{-278}:\\
\;\;\;\;y\\
\mathbf{elif}\;z \leq 1.25 \cdot 10^{-127}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq 6.5 \cdot 10^{-61}:\\
\;\;\;\;y\\
\mathbf{elif}\;z \leq 1:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;z \cdot x\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 79.3% |
|---|
| Cost | 1246 |
|---|
\[\begin{array}{l}
t_0 := \left(z + 1\right) \cdot x\\
\mathbf{if}\;y \leq 2.7 \cdot 10^{-160}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 2.3 \cdot 10^{-107}:\\
\;\;\;\;y + x\\
\mathbf{elif}\;y \leq 2.2 \cdot 10^{-94} \lor \neg \left(y \leq 3 \cdot 10^{-57}\right) \land \left(y \leq 2.9 \cdot 10^{-37} \lor \neg \left(y \leq 2.1 \cdot 10^{+23}\right) \land y \leq 3.3 \cdot 10^{+48}\right):\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;\left(z + 1\right) \cdot y\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 49.9% |
|---|
| Cost | 984 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -0.116:\\
\;\;\;\;z \cdot x\\
\mathbf{elif}\;z \leq -2.4 \cdot 10^{-208}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq 5 \cdot 10^{-278}:\\
\;\;\;\;y\\
\mathbf{elif}\;z \leq 6.5 \cdot 10^{-124}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq 4.3 \cdot 10^{-64}:\\
\;\;\;\;y\\
\mathbf{elif}\;z \leq 1:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;z \cdot x\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 79.0% |
|---|
| Cost | 720 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -2.8 \cdot 10^{+100}:\\
\;\;\;\;z \cdot y\\
\mathbf{elif}\;z \leq -2.7 \cdot 10^{+84}:\\
\;\;\;\;z \cdot x\\
\mathbf{elif}\;z \leq -1:\\
\;\;\;\;z \cdot y\\
\mathbf{elif}\;z \leq 62:\\
\;\;\;\;y + x\\
\mathbf{else}:\\
\;\;\;\;z \cdot x\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 79.2% |
|---|
| Cost | 720 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -2.4 \cdot 10^{+98}:\\
\;\;\;\;z \cdot y\\
\mathbf{elif}\;z \leq -2.7 \cdot 10^{+84}:\\
\;\;\;\;z \cdot x\\
\mathbf{elif}\;z \leq -0.0074:\\
\;\;\;\;\left(z + 1\right) \cdot y\\
\mathbf{elif}\;z \leq 170:\\
\;\;\;\;y + x\\
\mathbf{else}:\\
\;\;\;\;z \cdot x\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 97.4% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1 \lor \neg \left(z \leq 1\right):\\
\;\;\;\;z \cdot \left(y + x\right)\\
\mathbf{else}:\\
\;\;\;\;y + x\\
\end{array}
\]
| Alternative 7 |
|---|
| Accuracy | 51.1% |
|---|
| Cost | 460 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -70:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq -2.05 \cdot 10^{-58}:\\
\;\;\;\;y\\
\mathbf{elif}\;x \leq -4.5 \cdot 10^{-155}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 8 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[\left(z + 1\right) \cdot \left(y + x\right)
\]