| Alternative 1 |
|---|
| Error | 12.6 |
|---|
| Cost | 1036 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \left(-x\right)\\
\mathbf{if}\;1 - z \leq -4 \cdot 10^{+81}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;1 - z \leq -2:\\
\;\;\;\;\left(1 - z\right) \cdot y\\
\mathbf{elif}\;1 - z \leq 2:\\
\;\;\;\;y + x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 24.7 |
|---|
| Cost | 716 |
|---|
\[\begin{array}{l}
t_0 := \left(1 - z\right) \cdot x\\
t_1 := \left(1 - z\right) \cdot y\\
\mathbf{if}\;x \leq -1.15 \cdot 10^{-42}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -9.5 \cdot 10^{-79}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;x \leq -3.5 \cdot 10^{-132}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;t_1\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 0.0 |
|---|
| Cost | 704 |
|---|
\[\left(1 - z\right) \cdot x + \left(1 - z\right) \cdot y
\]
| Alternative 4 |
|---|
| Error | 1.7 |
|---|
| Cost | 648 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \left(\left(-x\right) - y\right)\\
\mathbf{if}\;z \leq -1:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 1:\\
\;\;\;\;y + x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 12.8 |
|---|
| Cost | 520 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \left(-x\right)\\
\mathbf{if}\;z \leq -27.5:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 1:\\
\;\;\;\;y + x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[\left(1 - z\right) \cdot \left(y + x\right)
\]