| Alternative 1 |
|---|
| Accuracy | 68.0% |
|---|
| Cost | 850 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -2 \cdot 10^{+18} \lor \neg \left(z \leq -4 \cdot 10^{-39}\right) \land \left(z \leq -4.9 \cdot 10^{-106} \lor \neg \left(z \leq 1.1 \cdot 10^{-17}\right)\right):\\
\;\;\;\;y \cdot \left(z \cdot z\right)\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 74.9% |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \left(y \cdot z\right)\\
\mathbf{if}\;z \leq -3.6 \cdot 10^{+16}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq -9.6 \cdot 10^{-39}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq -4.5 \cdot 10^{-106}:\\
\;\;\;\;y \cdot \left(z \cdot z\right)\\
\mathbf{elif}\;z \leq 2.25 \cdot 10^{-17}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 96.5% |
|---|
| Cost | 713 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -4 \cdot 10^{+147} \lor \neg \left(z \leq 3.7 \cdot 10^{+123}\right):\\
\;\;\;\;z \cdot \left(y \cdot z\right)\\
\mathbf{else}:\\
\;\;\;\;x + y \cdot \left(z \cdot z\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 99.9% |
|---|
| Cost | 448 |
|---|
\[x + z \cdot \left(y \cdot z\right)
\]