| Alternative 1 |
|---|
| Error | 0.1 |
|---|
| Cost | 13248 |
|---|
\[z \cdot \cos y + x \cdot \sin y
\]
| Alternative 2 |
|---|
| Error | 16.7 |
|---|
| Cost | 7120 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \sin y\\
t_1 := z \cdot \cos y\\
\mathbf{if}\;x \leq -9.969486211600665 \cdot 10^{+113}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -1.2414955181734478 \cdot 10^{+44}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;x \leq -5.77061478139967 \cdot 10^{+18}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 1.018749448945939 \cdot 10^{+81}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 16.6 |
|---|
| Cost | 6856 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \cos y\\
\mathbf{if}\;y \leq -1.523594038198561 \cdot 10^{-8}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 1.5991866494560887 \cdot 10^{-20}:\\
\;\;\;\;z + x \cdot y\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 16.6 |
|---|
| Cost | 6856 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \cos y\\
\mathbf{if}\;y \leq -1.523594038198561 \cdot 10^{-8}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 1.5991866494560887 \cdot 10^{-20}:\\
\;\;\;\;\mathsf{fma}\left(y, x, z\right)\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 37.4 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4.952298633175875 \cdot 10^{+126}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 9.477154532659547 \cdot 10^{+146}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]