| Alternative 1 |
|---|
| Accuracy | 62.8% |
|---|
| Cost | 1180 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \left(-x\right)\\
\mathbf{if}\;z \leq -1.55 \cdot 10^{+80}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq -1.02 \cdot 10^{+27}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq -39000000000:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq -1.85:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 5.4 \cdot 10^{-67}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq 1.78 \cdot 10^{-43}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 1:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 80.9% |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := \left(y - x\right) \cdot z\\
\mathbf{if}\;z \leq -0.017:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 5.4 \cdot 10^{-67}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq 4.5 \cdot 10^{-42}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 2.5 \cdot 10^{-17}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 62.6% |
|---|
| Cost | 721 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1.85:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 2.8 \cdot 10^{-67}:\\
\;\;\;\;x\\
\mathbf{elif}\;\neg \left(z \leq 4.4 \cdot 10^{-43}\right) \land z \leq 1.55 \cdot 10^{-16}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 98.6% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1 \lor \neg \left(z \leq 1\right):\\
\;\;\;\;\left(y - x\right) \cdot z\\
\mathbf{else}:\\
\;\;\;\;x + y \cdot z\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[x + \left(y - x\right) \cdot z
\]