| Alternative 1 |
|---|
| Error | 10.8 |
|---|
| Cost | 7368 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \cdot 0.5 \leq -1.4 \cdot 10^{-164}:\\
\;\;\;\;x \cdot 0.5 - z \cdot y\\
\mathbf{elif}\;x \cdot 0.5 \leq 10^{-27}:\\
\;\;\;\;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 |
|---|
| Error | 0.9 |
|---|
| Cost | 7108 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq 0.275:\\
\;\;\;\;x \cdot 0.5 + y \cdot \left(1 + \log z\right)\\
\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(-z, y, x \cdot 0.5\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 0.9 |
|---|
| Cost | 7108 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq 0.275:\\
\;\;\;\;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 4 |
|---|
| Error | 0.1 |
|---|
| Cost | 7104 |
|---|
\[x \cdot 0.5 + \left(\left(1 - z\right) + \log z\right) \cdot y
\]
| Alternative 5 |
|---|
| Error | 13.7 |
|---|
| Cost | 7048 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -2.9 \cdot 10^{+218}:\\
\;\;\;\;y \cdot \left(1 + \log z\right)\\
\mathbf{elif}\;y \leq 1.4 \cdot 10^{+142}:\\
\;\;\;\;\mathsf{fma}\left(-z, y, x \cdot 0.5\right)\\
\mathbf{else}:\\
\;\;\;\;y + \log z \cdot y\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 13.7 |
|---|
| Cost | 6985 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -2.9 \cdot 10^{+218} \lor \neg \left(y \leq 6.4 \cdot 10^{+142}\right):\\
\;\;\;\;y \cdot \left(1 + \log z\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot 0.5 - z \cdot y\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 13.7 |
|---|
| Cost | 6984 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -3.4 \cdot 10^{+218}:\\
\;\;\;\;y \cdot \left(1 + \log z\right)\\
\mathbf{elif}\;y \leq 9.5 \cdot 10^{+142}:\\
\;\;\;\;x \cdot 0.5 - z \cdot y\\
\mathbf{else}:\\
\;\;\;\;y + \log z \cdot y\\
\end{array}
\]
| Alternative 8 |
|---|
| Error | 17.8 |
|---|
| Cost | 448 |
|---|
\[x \cdot 0.5 - z \cdot y
\]
| Alternative 9 |
|---|
| Error | 28.6 |
|---|
| Cost | 388 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq 5.7 \cdot 10^{+32}:\\
\;\;\;\;x \cdot 0.5\\
\mathbf{else}:\\
\;\;\;\;z \cdot \left(-y\right)\\
\end{array}
\]