| Alternative 1 |
|---|
| Error | 16.7 |
|---|
| Cost | 849 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -5.8 \cdot 10^{-30}:\\
\;\;\;\;-z\\
\mathbf{elif}\;z \leq -5.2 \cdot 10^{-87} \lor \neg \left(z \leq -5.6 \cdot 10^{-112}\right) \land z \leq 5000:\\
\;\;\;\;3 \cdot \left(y \cdot x\right)\\
\mathbf{else}:\\
\;\;\;\;-z\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 16.7 |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -6.8 \cdot 10^{-30}:\\
\;\;\;\;-z\\
\mathbf{elif}\;z \leq -3.3 \cdot 10^{-86}:\\
\;\;\;\;3 \cdot \left(y \cdot x\right)\\
\mathbf{elif}\;z \leq -1.12 \cdot 10^{-112}:\\
\;\;\;\;-z\\
\mathbf{elif}\;z \leq 36:\\
\;\;\;\;y \cdot \left(3 \cdot x\right)\\
\mathbf{else}:\\
\;\;\;\;-z\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 0.1 |
|---|
| Cost | 448 |
|---|
\[x \cdot \left(3 \cdot y\right) - z
\]
| Alternative 4 |
|---|
| Error | 0.2 |
|---|
| Cost | 448 |
|---|
\[y \cdot \left(3 \cdot x\right) - z
\]