| Alternative 1 |
|---|
| Error | 14.5 |
|---|
| Cost | 1112 |
|---|
\[\begin{array}{l}
t_0 := \left(y - x\right) \cdot z\\
t_1 := x \cdot \left(1 - z\right)\\
\mathbf{if}\;z \leq -2.7 \cdot 10^{-14}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq -1.7 \cdot 10^{-60}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;z \leq -2.6 \cdot 10^{-132}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 10^{-91}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq 1.82 \cdot 10^{-8}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 900:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 26.2 |
|---|
| Cost | 720 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1.6 \cdot 10^{-14}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq -5.5 \cdot 10^{-61}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq -2.6 \cdot 10^{-132}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 10^{-91}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 25.2 |
|---|
| Cost | 720 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -3 \cdot 10^{+26}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq -5.2 \cdot 10^{-28}:\\
\;\;\;\;x \cdot \left(-z\right)\\
\mathbf{elif}\;x \leq -8.8 \cdot 10^{-62}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq 4 \cdot 10^{-27}:\\
\;\;\;\;y \cdot z\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 16.0 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.15 \cdot 10^{-60} \lor \neg \left(x \leq 1.15 \cdot 10^{-114}\right):\\
\;\;\;\;x \cdot \left(1 - z\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.9 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -300 \lor \neg \left(z \leq 1\right):\\
\;\;\;\;\left(y - x\right) \cdot z\\
\mathbf{else}:\\
\;\;\;\;x + y \cdot z\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[x + \left(y - x\right) \cdot z
\]