| Alternative 1 |
|---|
| Accuracy | 69.1% |
|---|
| Cost | 1112 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(x - z\right)\\
t_1 := z \cdot \left(1 - y\right)\\
\mathbf{if}\;x \leq -6.8:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 2 \cdot 10^{-164}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;x \leq 3.2 \cdot 10^{-119}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 7 \cdot 10^{+22}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;x \leq 5.3 \cdot 10^{+75}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 6.5 \cdot 10^{+223}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 63.5% |
|---|
| Cost | 916 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \left(-y\right)\\
\mathbf{if}\;y \leq -1.4 \cdot 10^{+173}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq -1.32 \cdot 10^{+79}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -8.5 \cdot 10^{-6}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 3.2 \cdot 10^{-40}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq 4.5 \cdot 10^{+63}:\\
\;\;\;\;y \cdot x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 80.9% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -8.5 \cdot 10^{-6} \lor \neg \left(y \leq 3 \cdot 10^{-40}\right):\\
\;\;\;\;y \cdot \left(x - z\right)\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 98.6% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -145 \lor \neg \left(y \leq 0.000235\right):\\
\;\;\;\;y \cdot \left(x - z\right)\\
\mathbf{else}:\\
\;\;\;\;z + y \cdot x\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 576 |
|---|
\[z \cdot \left(1 - y\right) + y \cdot x
\]
| Alternative 6 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 576 |
|---|
\[\left(z - y \cdot z\right) + y \cdot x
\]
| Alternative 7 |
|---|
| Accuracy | 63.6% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.2 \cdot 10^{-5}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 2.1 \cdot 10^{-40}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]