| Alternative 1 |
|---|
| Accuracy | 99.8% |
|---|
| Cost | 19520 |
|---|
\[\mathsf{fma}\left(\cos y, z, \sin y \cdot x\right)
\]
| Alternative 2 |
|---|
| Accuracy | 99.8% |
|---|
| Cost | 19520 |
|---|
\[\mathsf{fma}\left(x, \sin y, \cos y \cdot z\right)
\]
| Alternative 3 |
|---|
| Accuracy | 86.0% |
|---|
| Cost | 13256 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -5.5 \cdot 10^{-38}:\\
\;\;\;\;z + \sin y \cdot x\\
\mathbf{elif}\;x \leq 2.65 \cdot 10^{-20}:\\
\;\;\;\;\cos y \cdot z\\
\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(x, \sin y, z\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 99.8% |
|---|
| Cost | 13248 |
|---|
\[\sin y \cdot x + \cos y \cdot z
\]
| Alternative 5 |
|---|
| Accuracy | 74.4% |
|---|
| Cost | 7253 |
|---|
\[\begin{array}{l}
t_0 := \cos y \cdot z\\
t_1 := \sin y \cdot x\\
\mathbf{if}\;y \leq -4.2 \cdot 10^{+214}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -0.0065:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq 0.00064:\\
\;\;\;\;z + y \cdot x\\
\mathbf{elif}\;y \leq 1.45 \cdot 10^{+113} \lor \neg \left(y \leq 2.65 \cdot 10^{+209}\right):\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 74.4% |
|---|
| Cost | 7253 |
|---|
\[\begin{array}{l}
t_0 := \cos y \cdot z\\
t_1 := \sin y \cdot x\\
\mathbf{if}\;y \leq -1.26 \cdot 10^{+216}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -0.0014:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq 0.023:\\
\;\;\;\;\mathsf{fma}\left(y, x, z\right)\\
\mathbf{elif}\;y \leq 1.65 \cdot 10^{+112} \lor \neg \left(y \leq 8.2 \cdot 10^{+212}\right):\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 7 |
|---|
| Accuracy | 86.0% |
|---|
| Cost | 6985 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.5 \cdot 10^{-41} \lor \neg \left(x \leq 2 \cdot 10^{-22}\right):\\
\;\;\;\;z + \sin y \cdot x\\
\mathbf{else}:\\
\;\;\;\;\cos y \cdot z\\
\end{array}
\]
| Alternative 8 |
|---|
| Accuracy | 73.8% |
|---|
| Cost | 6857 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.4 \cdot 10^{-8} \lor \neg \left(y \leq 3.3 \cdot 10^{-28}\right):\\
\;\;\;\;\cos y \cdot z\\
\mathbf{else}:\\
\;\;\;\;z + y \cdot x\\
\end{array}
\]