| Alternative 1 |
|---|
| Error | 30.8 |
|---|
| Cost | 984 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -3.3 \cdot 10^{-43}:\\
\;\;\;\;y \cdot 2\\
\mathbf{elif}\;y \leq -7.2 \cdot 10^{-127}:\\
\;\;\;\;x \cdot 3\\
\mathbf{elif}\;y \leq 9.2 \cdot 10^{-250}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq 4.5 \cdot 10^{-242}:\\
\;\;\;\;x \cdot 3\\
\mathbf{elif}\;y \leq 3.9 \cdot 10^{-116}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq 1.9 \cdot 10^{+55}:\\
\;\;\;\;x \cdot 3\\
\mathbf{else}:\\
\;\;\;\;y \cdot 2\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 14.2 |
|---|
| Cost | 849 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.9 \cdot 10^{+224}:\\
\;\;\;\;x \cdot 3\\
\mathbf{elif}\;x \leq -4.5 \cdot 10^{+168} \lor \neg \left(x \leq -7.2 \cdot 10^{+124}\right) \land x \leq 1.4 \cdot 10^{+161}:\\
\;\;\;\;z + y \cdot 2\\
\mathbf{else}:\\
\;\;\;\;x \cdot 3\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 9.4 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -3.7 \cdot 10^{+27}:\\
\;\;\;\;z + x \cdot 3\\
\mathbf{elif}\;z \leq 1.15 \cdot 10^{-11}:\\
\;\;\;\;x + 2 \cdot \left(x + y\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot 2 + \left(x + z\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 9.2 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -45000 \lor \neg \left(x \leq 11500000000000\right):\\
\;\;\;\;z + x \cdot 3\\
\mathbf{else}:\\
\;\;\;\;z + y \cdot 2\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.1 |
|---|
| Cost | 576 |
|---|
\[x + \left(z + 2 \cdot \left(x + y\right)\right)
\]
| Alternative 6 |
|---|
| Error | 30.8 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1.1 \cdot 10^{+21}:\\
\;\;\;\;z\\
\mathbf{elif}\;z \leq 1.5 \cdot 10^{-10}:\\
\;\;\;\;y \cdot 2\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]