| Alternative 1 |
|---|
| Error | 3.5 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1 \cdot 10^{+150}:\\
\;\;\;\;z \cdot \left(y \cdot z\right)\\
\mathbf{elif}\;z \leq 2 \cdot 10^{+153}:\\
\;\;\;\;x + y \cdot \left(z \cdot z\right)\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 14.8 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \left(y \cdot z\right)\\
\mathbf{if}\;z \leq -6.52251261662656 \cdot 10^{-30}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 1.75 \cdot 10^{+72}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 0.1 |
|---|
| Cost | 448 |
|---|
\[x + z \cdot \left(y \cdot z\right)
\]