| Alternative 1 |
|---|
| Accuracy | 85.3% |
|---|
| Cost | 7368 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \cdot 0.5 \leq -5 \cdot 10^{+22}:\\
\;\;\;\;x \cdot 0.5 - z \cdot y\\
\mathbf{elif}\;x \cdot 0.5 \leq 2 \cdot 10^{-15}:\\
\;\;\;\;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 | 98.7% |
|---|
| Cost | 7108 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq 0.28:\\
\;\;\;\;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 | 99.9% |
|---|
| Cost | 7104 |
|---|
\[x \cdot 0.5 + \left(\left(1 - z\right) + \log z\right) \cdot y
\]
| Alternative 4 |
|---|
| Accuracy | 75.4% |
|---|
| Cost | 6916 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq 1.08 \cdot 10^{-150}:\\
\;\;\;\;y + \log z \cdot y\\
\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(-z, y, x \cdot 0.5\right)\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 75.4% |
|---|
| Cost | 6852 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq 1.25 \cdot 10^{-149}:\\
\;\;\;\;y + \log z \cdot y\\
\mathbf{else}:\\
\;\;\;\;x \cdot 0.5 - z \cdot y\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 75.4% |
|---|
| Cost | 448 |
|---|
\[x \cdot 0.5 - z \cdot y
\]
| Alternative 7 |
|---|
| Accuracy | 61.0% |
|---|
| Cost | 388 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq 2.4 \cdot 10^{+25}:\\
\;\;\;\;x \cdot 0.5\\
\mathbf{else}:\\
\;\;\;\;-z \cdot y\\
\end{array}
\]