| Alternative 1 |
|---|
| Error | 24.1 |
|---|
| Cost | 784 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(-z\right)\\
\mathbf{if}\;x \leq -1 \cdot 10^{+165}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -1.6 \cdot 10^{-68}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 7.4 \cdot 10^{-53}:\\
\;\;\;\;z\\
\mathbf{elif}\;x \leq 1.8 \cdot 10^{+181}:\\
\;\;\;\;x \cdot y\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 12.5 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.4 \cdot 10^{-68} \lor \neg \left(x \leq 2.9 \cdot 10^{-37}\right):\\
\;\;\;\;x \cdot \left(y - z\right)\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 1.8 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1 \lor \neg \left(x \leq 2 \cdot 10^{-34}\right):\\
\;\;\;\;x \cdot \left(y - z\right)\\
\mathbf{else}:\\
\;\;\;\;z + x \cdot y\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.0 |
|---|
| Cost | 576 |
|---|
\[\left(1 - x\right) \cdot z + x \cdot y
\]
| Alternative 5 |
|---|
| Error | 23.8 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.35 \cdot 10^{-68}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 7.8 \cdot 10^{-53}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[z + x \cdot \left(y - z\right)
\]