| Alternative 1 |
|---|
| Error | 32.6 |
|---|
| Cost | 1248 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1:\\
\;\;\;\;z \cdot x\\
\mathbf{elif}\;z \leq -3.5 \cdot 10^{-163}:\\
\;\;\;\;y\\
\mathbf{elif}\;z \leq 1.4 \cdot 10^{-296}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq 2.7 \cdot 10^{-245}:\\
\;\;\;\;y\\
\mathbf{elif}\;z \leq 9.6 \cdot 10^{-178}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq 3.7 \cdot 10^{-121}:\\
\;\;\;\;y\\
\mathbf{elif}\;z \leq 2.9 \cdot 10^{-68}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq 28000:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;z \cdot x\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 12.4 |
|---|
| Cost | 716 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1:\\
\;\;\;\;z \cdot x\\
\mathbf{elif}\;z \leq 0.0075:\\
\;\;\;\;y + x\\
\mathbf{elif}\;z \leq 6 \cdot 10^{+19}:\\
\;\;\;\;y \cdot \left(z + 1\right)\\
\mathbf{else}:\\
\;\;\;\;z \cdot x\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 12.1 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -4.7 \cdot 10^{-5} \lor \neg \left(z \leq 4.4 \cdot 10^{-8}\right):\\
\;\;\;\;x \cdot \left(z + 1\right)\\
\mathbf{else}:\\
\;\;\;\;y + x\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 1.6 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1 \lor \neg \left(z \leq 1\right):\\
\;\;\;\;z \cdot \left(y + x\right)\\
\mathbf{else}:\\
\;\;\;\;y + x\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 12.7 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1:\\
\;\;\;\;z \cdot x\\
\mathbf{elif}\;z \leq 32000:\\
\;\;\;\;y + x\\
\mathbf{else}:\\
\;\;\;\;z \cdot x\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[\left(y + x\right) \cdot \left(z + 1\right)
\]
| Alternative 7 |
|---|
| Error | 38.7 |
|---|
| Cost | 196 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq 5.1 \cdot 10^{-113}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]