| Alternative 1 |
|---|
| Error | 24.0 |
|---|
| Cost | 1048 |
|---|
\[\begin{array}{l}
t_0 := -x \cdot z\\
\mathbf{if}\;z \leq -8.8 \cdot 10^{+142}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq -1.76 \cdot 10^{+103}:\\
\;\;\;\;z \cdot y\\
\mathbf{elif}\;z \leq -4.2 \cdot 10^{+36}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq -2.6 \cdot 10^{-44}:\\
\;\;\;\;z \cdot y\\
\mathbf{elif}\;z \leq 2.1 \cdot 10^{-85}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq 3.4 \cdot 10^{+16}:\\
\;\;\;\;z \cdot y\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 12.5 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := \left(y - x\right) \cdot z\\
\mathbf{if}\;z \leq -2.6 \cdot 10^{-44}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 2.6 \cdot 10^{-83}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 2.0 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := \left(y - x\right) \cdot z\\
\mathbf{if}\;z \leq -1750000:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 4.4 \cdot 10^{-37}:\\
\;\;\;\;x + y \cdot z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 24.4 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -2.6 \cdot 10^{-44}:\\
\;\;\;\;z \cdot y\\
\mathbf{elif}\;z \leq 2.5 \cdot 10^{-83}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;z \cdot y\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[x + \left(y - x\right) \cdot z
\]