| Alternative 1 |
|---|
| Accuracy | 86.4% |
|---|
| Cost | 13257 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.6 \cdot 10^{+88} \lor \neg \left(x \leq 9.5 \cdot 10^{+44}\right):\\
\;\;\;\;x \cdot \cos y\\
\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(\sin y, z, x\right)\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 99.8% |
|---|
| Cost | 13248 |
|---|
\[\sin y \cdot z + x \cdot \cos y
\]
| Alternative 3 |
|---|
| Accuracy | 75.8% |
|---|
| Cost | 7121 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \cos y\\
\mathbf{if}\;y \leq -0.0006:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 5800:\\
\;\;\;\;x + y \cdot z\\
\mathbf{elif}\;y \leq 2.65 \cdot 10^{+104} \lor \neg \left(y \leq 2.52 \cdot 10^{+123}\right):\\
\;\;\;\;\sin y \cdot z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 75.8% |
|---|
| Cost | 7121 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \cos y\\
\mathbf{if}\;y \leq -0.00044:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 5800:\\
\;\;\;\;\mathsf{fma}\left(y, z, x\right)\\
\mathbf{elif}\;y \leq 6.8 \cdot 10^{+112} \lor \neg \left(y \leq 8 \cdot 10^{+122}\right):\\
\;\;\;\;\sin y \cdot z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 86.4% |
|---|
| Cost | 6985 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -5.4 \cdot 10^{+87} \lor \neg \left(x \leq 4.6 \cdot 10^{+42}\right):\\
\;\;\;\;x \cdot \cos y\\
\mathbf{else}:\\
\;\;\;\;x + \sin y \cdot z\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 75.2% |
|---|
| Cost | 6857 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -0.0039 \lor \neg \left(y \leq 5800\right):\\
\;\;\;\;\sin y \cdot z\\
\mathbf{else}:\\
\;\;\;\;x + y \cdot z\\
\end{array}
\]
| Alternative 7 |
|---|
| Accuracy | 42.9% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.25 \cdot 10^{-135}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq 6.2 \cdot 10^{-139}:\\
\;\;\;\;y \cdot z\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]