| Alternative 1 |
|---|
| Error | 0.1 |
|---|
| Cost | 13248 |
|---|
\[\sin y \cdot x + \cos y \cdot z
\]
| Alternative 2 |
|---|
| Error | 16.8 |
|---|
| Cost | 7120 |
|---|
\[\begin{array}{l}
t_0 := \sin y \cdot x\\
\mathbf{if}\;x \leq -4 \cdot 10^{+68}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 4 \cdot 10^{+23}:\\
\;\;\;\;\cos y \cdot z\\
\mathbf{elif}\;x \leq 5.5 \cdot 10^{+42}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 7.8 \cdot 10^{+173}:\\
\;\;\;\;z + y \cdot x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 9.1 |
|---|
| Cost | 6984 |
|---|
\[\begin{array}{l}
t_0 := z + \sin y \cdot x\\
\mathbf{if}\;x \leq -5.5 \cdot 10^{-9}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 1.05 \cdot 10^{+23}:\\
\;\;\;\;\cos y \cdot z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 16.4 |
|---|
| Cost | 6856 |
|---|
\[\begin{array}{l}
t_0 := \cos y \cdot z\\
\mathbf{if}\;y \leq -0.00155:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 1.7 \cdot 10^{-19}:\\
\;\;\;\;z + y \cdot x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 37.1 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -3.9 \cdot 10^{+151}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;x \leq 2.25 \cdot 10^{+86}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]