| Alternative 1 |
|---|
| Error | 15.2 |
|---|
| Cost | 1096 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(x \cdot 3\right)\\
\mathbf{if}\;t_0 \leq -1 \cdot 10^{-63}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;t_0 \leq 1000000:\\
\;\;\;\;-z\\
\mathbf{else}:\\
\;\;\;\;3 \cdot \left(x \cdot y\right)\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 17.7 |
|---|
| Cost | 849 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -0.0008:\\
\;\;\;\;-z\\
\mathbf{elif}\;z \leq -4.1 \cdot 10^{-24} \lor \neg \left(z \leq -6 \cdot 10^{-87}\right) \land z \leq 4.5 \cdot 10^{-124}:\\
\;\;\;\;3 \cdot \left(x \cdot y\right)\\
\mathbf{else}:\\
\;\;\;\;-z\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 0.1 |
|---|
| Cost | 448 |
|---|
\[3 \cdot \left(x \cdot y\right) - z
\]
| Alternative 4 |
|---|
| Error | 0.2 |
|---|
| Cost | 448 |
|---|
\[x \cdot \left(3 \cdot y\right) - z
\]