| Alternative 1 |
|---|
| Error | 26.9 |
|---|
| Cost | 720 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -8.6 \cdot 10^{+151}:\\
\;\;\;\;z\\
\mathbf{elif}\;z \leq -2.8 \cdot 10^{-7}:\\
\;\;\;\;-z \cdot x\\
\mathbf{elif}\;z \leq -8.2 \cdot 10^{-66}:\\
\;\;\;\;z\\
\mathbf{elif}\;z \leq 2.8 \cdot 10^{-79}:\\
\;\;\;\;y \cdot x\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 16.2 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := \left(1 - x\right) \cdot z\\
\mathbf{if}\;z \leq -7 \cdot 10^{-69}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 2.35 \cdot 10^{-119}:\\
\;\;\;\;y \cdot x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 13.4 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := \left(1 - x\right) \cdot z\\
\mathbf{if}\;z \leq -7.5 \cdot 10^{-67}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 1.95 \cdot 10^{-79}:\\
\;\;\;\;\left(y - z\right) \cdot x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.9 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := \left(y - z\right) \cdot x\\
\mathbf{if}\;x \leq -1700:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 1:\\
\;\;\;\;y \cdot x + z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 24.7 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1.65 \cdot 10^{-62}:\\
\;\;\;\;z\\
\mathbf{elif}\;z \leq 2.35 \cdot 10^{-79}:\\
\;\;\;\;y \cdot x\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[z - \left(z - y\right) \cdot x
\]