| Alternative 1 |
|---|
| Accuracy | 99.8% |
|---|
| Cost | 13248 |
|---|
\[\sin y \cdot z + x \cdot \cos y
\]
| Alternative 2 |
|---|
| Accuracy | 73.2% |
|---|
| Cost | 7122 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.25 \cdot 10^{-71} \lor \neg \left(x \leq 8.5 \cdot 10^{-141}\right) \land \left(x \leq 6.2 \cdot 10^{-87} \lor \neg \left(x \leq 4.8 \cdot 10^{-33}\right)\right):\\
\;\;\;\;x \cdot \cos y\\
\mathbf{else}:\\
\;\;\;\;\sin y \cdot z\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 85.0% |
|---|
| Cost | 6985 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -23000000000 \lor \neg \left(x \leq 2.4 \cdot 10^{-32}\right):\\
\;\;\;\;x \cdot \cos y\\
\mathbf{else}:\\
\;\;\;\;x + \sin y \cdot z\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 74.3% |
|---|
| Cost | 6857 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.1 \cdot 10^{+24} \lor \neg \left(y \leq 0.025\right):\\
\;\;\;\;\sin y \cdot z\\
\mathbf{else}:\\
\;\;\;\;x + y \cdot z\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 40.6% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4.3 \cdot 10^{-66}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq 3.55 \cdot 10^{-146}:\\
\;\;\;\;y \cdot z\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]