| Alternative 1 |
|---|
| Error | 23.8 |
|---|
| Cost | 1116 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -2.4 \cdot 10^{+210}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq -7 \cdot 10^{+89}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq -6.4 \cdot 10^{+25}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq -8.5 \cdot 10^{-41}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 9.5 \cdot 10^{-10}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 3.5 \cdot 10^{+68}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 8.8 \cdot 10^{+140}:\\
\;\;\;\;y \cdot x\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 12.5 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -4.25 \cdot 10^{-41} \lor \neg \left(y \leq 2.6 \cdot 10^{-10}\right):\\
\;\;\;\;y \cdot \left(x + z\right)\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 0.8 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1 \lor \neg \left(y \leq 1\right):\\
\;\;\;\;y \cdot \left(x + z\right)\\
\mathbf{else}:\\
\;\;\;\;x + y \cdot z\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 24.3 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 1650:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[x + y \cdot \left(x + z\right)
\]