| Alternative 1 |
|---|
| Error | 36.61% |
|---|
| Cost | 1116 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.25 \cdot 10^{+162}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq -3 \cdot 10^{+93}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq -2.5 \cdot 10^{+54}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq -1.2 \cdot 10^{+33}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq -4.8 \cdot 10^{-32}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 3.5 \cdot 10^{-27}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 2.8 \cdot 10^{+17}:\\
\;\;\;\;y \cdot z\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 19.26% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -3.8 \cdot 10^{-28} \lor \neg \left(y \leq 9.5 \cdot 10^{-35}\right):\\
\;\;\;\;y \cdot \left(x + z\right)\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 1.61% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -34 \lor \neg \left(y \leq 2.5 \cdot 10^{-5}\right):\\
\;\;\;\;y \cdot \left(x + z\right)\\
\mathbf{else}:\\
\;\;\;\;x + y \cdot z\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 37.77% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.8 \cdot 10^{-6}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 54000000:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.02% |
|---|
| Cost | 448 |
|---|
\[x + y \cdot \left(x + z\right)
\]