| Alternative 1 |
|---|
| Error | 32.6 |
|---|
| Cost | 1116 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -9.8 \cdot 10^{+238}:\\
\;\;\;\;z \cdot x\\
\mathbf{elif}\;z \leq -1:\\
\;\;\;\;z \cdot y\\
\mathbf{elif}\;z \leq 1.25 \cdot 10^{-241}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq 3 \cdot 10^{-156}:\\
\;\;\;\;y\\
\mathbf{elif}\;z \leq 1.4 \cdot 10^{-113}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq 0.048:\\
\;\;\;\;y\\
\mathbf{elif}\;z \leq 2.4 \cdot 10^{+61}:\\
\;\;\;\;z \cdot y\\
\mathbf{else}:\\
\;\;\;\;z \cdot x\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 33.1 |
|---|
| Cost | 852 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1.3 \cdot 10^{-10}:\\
\;\;\;\;z \cdot x\\
\mathbf{elif}\;z \leq 2.9 \cdot 10^{-239}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq 3 \cdot 10^{-156}:\\
\;\;\;\;y\\
\mathbf{elif}\;z \leq 2.15 \cdot 10^{-109}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq 0.026:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;z \cdot x\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 12.8 |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := \left(z + 1\right) \cdot y\\
\mathbf{if}\;z \leq -2.7 \cdot 10^{+230}:\\
\;\;\;\;z \cdot x\\
\mathbf{elif}\;z \leq -1.3 \cdot 10^{-10}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 1.52 \cdot 10^{-21}:\\
\;\;\;\;x + y\\
\mathbf{elif}\;z \leq 8.2 \cdot 10^{+61}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;z \cdot x\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 13.0 |
|---|
| Cost | 720 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -9.8 \cdot 10^{+235}:\\
\;\;\;\;z \cdot x\\
\mathbf{elif}\;z \leq -1:\\
\;\;\;\;z \cdot y\\
\mathbf{elif}\;z \leq 23:\\
\;\;\;\;x + y\\
\mathbf{elif}\;z \leq 8.5 \cdot 10^{+61}:\\
\;\;\;\;z \cdot y\\
\mathbf{else}:\\
\;\;\;\;z \cdot x\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.0 |
|---|
| Cost | 704 |
|---|
\[\left(z + 1\right) \cdot y + \left(z + 1\right) \cdot x
\]
| Alternative 6 |
|---|
| Error | 1.6 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \left(x + y\right)\\
\mathbf{if}\;z \leq -1:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 1:\\
\;\;\;\;x + y\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[\left(z + 1\right) \cdot \left(x + y\right)
\]
| Alternative 8 |
|---|
| Error | 30.6 |
|---|
| Cost | 196 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq 1.08 \cdot 10^{-69}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]