| Alternative 1 |
|---|
| Accuracy | 72.3% |
|---|
| Cost | 7113 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -2.6 \cdot 10^{+39} \lor \neg \left(y \leq 7.8 \cdot 10^{-19}\right):\\
\;\;\;\;y \cdot \left(\left(1 + \log z\right) - z\right)\\
\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(-z, y, x \cdot 0.5\right)\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 85.7% |
|---|
| Cost | 7108 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq 4.2 \cdot 10^{-5}:\\
\;\;\;\;x \cdot 0.5 + \left(y + \log z \cdot y\right)\\
\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(-z, y, x \cdot 0.5\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 86.9% |
|---|
| Cost | 7104 |
|---|
\[x \cdot 0.5 + \left(\left(1 - z\right) + \log z\right) \cdot y
\]
| Alternative 4 |
|---|
| Accuracy | 66.5% |
|---|
| Cost | 7048 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -4 \cdot 10^{+210}:\\
\;\;\;\;y \cdot \left(1 + \log z\right)\\
\mathbf{elif}\;y \leq 8.5 \cdot 10^{+203}:\\
\;\;\;\;\mathsf{fma}\left(-z, y, x \cdot 0.5\right)\\
\mathbf{else}:\\
\;\;\;\;y + \log z \cdot y\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 66.5% |
|---|
| Cost | 6985 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.6 \cdot 10^{+207} \lor \neg \left(y \leq 8.2 \cdot 10^{+203}\right):\\
\;\;\;\;y \cdot \left(1 + \log z\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot 0.5 - z \cdot y\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 66.5% |
|---|
| Cost | 6984 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.65 \cdot 10^{+208}:\\
\;\;\;\;y \cdot \left(1 + \log z\right)\\
\mathbf{elif}\;y \leq 9.2 \cdot 10^{+203}:\\
\;\;\;\;x \cdot 0.5 - z \cdot y\\
\mathbf{else}:\\
\;\;\;\;y + \log z \cdot y\\
\end{array}
\]
| Alternative 7 |
|---|
| Accuracy | 48.4% |
|---|
| Cost | 520 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -7.6 \cdot 10^{-76}:\\
\;\;\;\;x \cdot 0.5\\
\mathbf{elif}\;x \leq 1.32 \cdot 10^{-73}:\\
\;\;\;\;z \cdot \left(-y\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot 0.5\\
\end{array}
\]
| Alternative 8 |
|---|
| Accuracy | 61.5% |
|---|
| Cost | 448 |
|---|
\[x \cdot 0.5 - z \cdot y
\]