| Alternative 1 |
|---|
| Accuracy | 86.1% |
|---|
| Cost | 13321 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.3 \cdot 10^{+75} \lor \neg \left(x \leq 3.3 \cdot 10^{-22}\right):\\
\;\;\;\;x \cdot \cos y\\
\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(\sin y, -z, x\right)\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 99.8% |
|---|
| Cost | 13248 |
|---|
\[x \cdot \cos y - \sin y \cdot z
\]
| Alternative 3 |
|---|
| Accuracy | 75.2% |
|---|
| Cost | 7580 |
|---|
\[\begin{array}{l}
t_0 := \sin y \cdot \left(-z\right)\\
t_1 := x \cdot \cos y\\
\mathbf{if}\;y \leq -2.4 \cdot 10^{+274}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -2.1 \cdot 10^{+236}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq -8 \cdot 10^{+153}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -4 \cdot 10^{+75}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq -1.35 \cdot 10^{+46}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -8.6 \cdot 10^{-5}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq 0.00046:\\
\;\;\;\;x - y \cdot z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 75.2% |
|---|
| Cost | 7580 |
|---|
\[\begin{array}{l}
t_0 := \sin y \cdot \left(-z\right)\\
t_1 := x \cdot \cos y\\
\mathbf{if}\;y \leq -2.6 \cdot 10^{+274}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -4.8 \cdot 10^{+235}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq -1.6 \cdot 10^{+152}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -1 \cdot 10^{+74}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq -7.8 \cdot 10^{+43}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -0.00032:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq 0.00146:\\
\;\;\;\;\mathsf{fma}\left(-y, z, x\right)\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 86.2% |
|---|
| Cost | 6985 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -3.05 \cdot 10^{+72} \lor \neg \left(x \leq 5.6 \cdot 10^{-22}\right):\\
\;\;\;\;x \cdot \cos y\\
\mathbf{else}:\\
\;\;\;\;x - \sin y \cdot z\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 74.1% |
|---|
| Cost | 6857 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -0.023 \lor \neg \left(y \leq 3.2 \cdot 10^{+18}\right):\\
\;\;\;\;x \cdot \cos y\\
\mathbf{else}:\\
\;\;\;\;x - y \cdot z\\
\end{array}
\]
| Alternative 7 |
|---|
| Accuracy | 41.3% |
|---|
| Cost | 388 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq 4.7 \cdot 10^{+165}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(-z\right)\\
\end{array}
\]