| Alternative 1 |
|---|
| Error | 30.4 |
|---|
| Cost | 1116 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1.15 \cdot 10^{+119}:\\
\;\;\;\;z\\
\mathbf{elif}\;z \leq -2.9 \cdot 10^{-66}:\\
\;\;\;\;x \cdot 3\\
\mathbf{elif}\;z \leq 7.5 \cdot 10^{-264}:\\
\;\;\;\;y \cdot 2\\
\mathbf{elif}\;z \leq 3.1 \cdot 10^{-107}:\\
\;\;\;\;x \cdot 3\\
\mathbf{elif}\;z \leq 9.5 \cdot 10^{+40}:\\
\;\;\;\;y \cdot 2\\
\mathbf{elif}\;z \leq 5.5 \cdot 10^{+110}:\\
\;\;\;\;x \cdot 3\\
\mathbf{elif}\;z \leq 3.7 \cdot 10^{+152}:\\
\;\;\;\;y \cdot 2\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 10.1 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -7.5 \cdot 10^{+108}:\\
\;\;\;\;z + x \cdot 3\\
\mathbf{elif}\;z \leq 8.5 \cdot 10^{-69}:\\
\;\;\;\;x + 2 \cdot \left(x + y\right)\\
\mathbf{else}:\\
\;\;\;\;z + y \cdot 2\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 10.0 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -9.2 \cdot 10^{+135} \lor \neg \left(y \leq 8 \cdot 10^{-21}\right):\\
\;\;\;\;z + y \cdot 2\\
\mathbf{else}:\\
\;\;\;\;z + x \cdot 3\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 13.3 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -7.4 \cdot 10^{+92}:\\
\;\;\;\;x \cdot 3\\
\mathbf{elif}\;x \leq 7.2 \cdot 10^{+99}:\\
\;\;\;\;z + y \cdot 2\\
\mathbf{else}:\\
\;\;\;\;x \cdot 3\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.1 |
|---|
| Cost | 576 |
|---|
\[x + \left(z + 2 \cdot \left(x + y\right)\right)
\]
| Alternative 6 |
|---|
| Error | 31.5 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -5.8 \cdot 10^{+107}:\\
\;\;\;\;z\\
\mathbf{elif}\;z \leq 3.7 \cdot 10^{+152}:\\
\;\;\;\;y \cdot 2\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]