| Alternative 1 |
|---|
| Error | 31.4 |
|---|
| Cost | 1360 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \left(-x\right)\\
t_1 := 1 - z \leq 1\\
t_2 := \left(1 - z\right) \cdot y\\
\mathbf{if}\;1 - z \leq -2 \cdot 10^{+63}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;t_1:\\
\;\;\;\;t_2\\
\mathbf{elif}\;t_1:\\
\;\;\;\;x + y\\
\mathbf{elif}\;1 - z \leq 2 \cdot 10^{+230}:\\
\;\;\;\;t_2\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 1.7 |
|---|
| Cost | 904 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \left(\left(-x\right) - y\right)\\
\mathbf{if}\;1 - z \leq -1000:\\
\;\;\;\;t_0\\
\mathbf{elif}\;1 - z \leq 2:\\
\;\;\;\;x + y\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 13.0 |
|---|
| Cost | 784 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \left(-x\right)\\
t_1 := y \cdot \left(-z\right)\\
\mathbf{if}\;z \leq -3.9 \cdot 10^{+233}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq -82:\\
\;\;\;\;t_1\\
\mathbf{elif}\;z \leq 1:\\
\;\;\;\;x + y\\
\mathbf{elif}\;z \leq 7.2 \cdot 10^{+62}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 31.4 |
|---|
| Cost | 724 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.25 \cdot 10^{-11}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq -1.8 \cdot 10^{-32}:\\
\;\;\;\;y\\
\mathbf{elif}\;x \leq -1.65 \cdot 10^{-77}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq -6.8 \cdot 10^{-162}:\\
\;\;\;\;y\\
\mathbf{elif}\;x \leq -5 \cdot 10^{-203}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.0 |
|---|
| Cost | 704 |
|---|
\[\left(1 - z\right) \cdot y + \left(1 - z\right) \cdot x
\]
| Alternative 6 |
|---|
| Error | 12.9 |
|---|
| Cost | 520 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(-z\right)\\
\mathbf{if}\;z \leq -61:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 1:\\
\;\;\;\;x + y\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[\left(1 - z\right) \cdot \left(x + y\right)
\]