| Alternative 1 |
|---|
| Error | 11.0 |
|---|
| Cost | 7113 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -4.8 \cdot 10^{+53} \lor \neg \left(y \leq 3.8 \cdot 10^{+72}\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 |
|---|
| Error | 0.9 |
|---|
| Cost | 7108 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq 0.28:\\
\;\;\;\;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.1 |
|---|
| Cost | 7104 |
|---|
\[x \cdot 0.5 + \left(\left(1 - z\right) + \log z\right) \cdot y
\]
| Alternative 4 |
|---|
| Error | 14.9 |
|---|
| Cost | 7049 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -3.3 \cdot 10^{+75} \lor \neg \left(y \leq 6.4 \cdot 10^{+149}\right):\\
\;\;\;\;y \cdot \left(1 + \log z\right)\\
\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(-z, y, x \cdot 0.5\right)\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 14.9 |
|---|
| Cost | 6985 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -3.3 \cdot 10^{+75} \lor \neg \left(y \leq 2.9 \cdot 10^{+148}\right):\\
\;\;\;\;y \cdot \left(1 + \log z\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot 0.5 - z \cdot y\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 27.6 |
|---|
| Cost | 520 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -7 \cdot 10^{-58}:\\
\;\;\;\;x \cdot 0.5\\
\mathbf{elif}\;x \leq 3 \cdot 10^{-88}:\\
\;\;\;\;-z \cdot y\\
\mathbf{else}:\\
\;\;\;\;x \cdot 0.5\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 17.9 |
|---|
| Cost | 448 |
|---|
\[x \cdot 0.5 - z \cdot y
\]