| Alternative 1 |
|---|
| Accuracy | 99.8% |
|---|
| Cost | 19520 |
|---|
\[\mathsf{fma}\left(x, \sin y, z \cdot \cos y\right)
\]
| Alternative 2 |
|---|
| Accuracy | 99.8% |
|---|
| Cost | 13248 |
|---|
\[z \cdot \cos y + x \cdot \sin y
\]
| Alternative 3 |
|---|
| Accuracy | 74.5% |
|---|
| Cost | 7121 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \cos y\\
\mathbf{if}\;z \leq -2.3 \cdot 10^{-52}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq -3.7 \cdot 10^{-141}:\\
\;\;\;\;z + x \cdot y\\
\mathbf{elif}\;z \leq -4 \cdot 10^{-143} \lor \neg \left(z \leq 3.7 \cdot 10^{-125}\right):\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;x \cdot \sin y\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 74.5% |
|---|
| Cost | 7121 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \cos y\\
\mathbf{if}\;z \leq -6.8 \cdot 10^{-54}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq -6.5 \cdot 10^{-141}:\\
\;\;\;\;\mathsf{fma}\left(y, x, z\right)\\
\mathbf{elif}\;z \leq -7 \cdot 10^{-143} \lor \neg \left(z \leq 6.2 \cdot 10^{-125}\right):\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;x \cdot \sin y\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 85.9% |
|---|
| Cost | 6985 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.25 \cdot 10^{-83} \lor \neg \left(x \leq 5.5 \cdot 10^{-149}\right):\\
\;\;\;\;z + x \cdot \sin y\\
\mathbf{else}:\\
\;\;\;\;z \cdot \cos y\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 74.6% |
|---|
| Cost | 6857 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -0.06 \lor \neg \left(y \leq 1650\right):\\
\;\;\;\;z \cdot \cos y\\
\mathbf{else}:\\
\;\;\;\;\left(z + x \cdot y\right) + -0.5 \cdot \left(z \cdot \left(y \cdot y\right)\right)\\
\end{array}
\]
| Alternative 7 |
|---|
| Accuracy | 42.2% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -5.1 \cdot 10^{-145}:\\
\;\;\;\;z\\
\mathbf{elif}\;z \leq 2.6 \cdot 10^{-125}:\\
\;\;\;\;x \cdot y\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]