| Alternative 1 |
|---|
| Error | 25.4 |
|---|
| Cost | 720 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -6 \cdot 10^{+87}:\\
\;\;\;\;-z\\
\mathbf{elif}\;z \leq -7.2 \cdot 10^{-12}:\\
\;\;\;\;z \cdot x\\
\mathbf{elif}\;z \leq -1 \cdot 10^{-73}:\\
\;\;\;\;-z\\
\mathbf{elif}\;z \leq 2.4 \cdot 10^{-79}:\\
\;\;\;\;y \cdot x\\
\mathbf{else}:\\
\;\;\;\;-z\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 12.2 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := \left(y + z\right) \cdot x\\
\mathbf{if}\;x \leq -1 \cdot 10^{-19}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 6.2 \cdot 10^{-40}:\\
\;\;\;\;-z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 12.9 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := \left(x - 1\right) \cdot z\\
\mathbf{if}\;z \leq -2.3 \cdot 10^{-74}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 1.95 \cdot 10^{-79}:\\
\;\;\;\;\left(y + z\right) \cdot x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.0 |
|---|
| Cost | 576 |
|---|
\[x \cdot y + \left(x - 1\right) \cdot z
\]
| Alternative 5 |
|---|
| Error | 23.1 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -6.4 \cdot 10^{-20}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;x \leq 5.7 \cdot 10^{-40}:\\
\;\;\;\;-z\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]