| Alternative 1 |
|---|
| Error | 10.6 |
|---|
| Cost | 7113 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -7.8 \cdot 10^{+56} \lor \neg \left(y \leq 2.35 \cdot 10^{+93}\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 | 10.6 |
|---|
| Cost | 7112 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -7 \cdot 10^{+57}:\\
\;\;\;\;y + y \cdot \left(\log z - z\right)\\
\mathbf{elif}\;y \leq 2.1 \cdot 10^{+94}:\\
\;\;\;\;\mathsf{fma}\left(-z, y, x \cdot 0.5\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(\left(1 + \log z\right) - z\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| 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 4 |
|---|
| Error | 0.1 |
|---|
| Cost | 7104 |
|---|
\[x \cdot 0.5 + \left(\left(1 - z\right) + \log z\right) \cdot y
\]
| Alternative 5 |
|---|
| Error | 14.3 |
|---|
| Cost | 7048 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.45 \cdot 10^{+117}:\\
\;\;\;\;y + \log z \cdot y\\
\mathbf{elif}\;y \leq 4.5 \cdot 10^{+112}:\\
\;\;\;\;\mathsf{fma}\left(-z, y, x \cdot 0.5\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(1 + \log z\right)\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 14.3 |
|---|
| Cost | 6985 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -8.5 \cdot 10^{+116} \lor \neg \left(y \leq 2.9 \cdot 10^{+112}\right):\\
\;\;\;\;y \cdot \left(1 + \log z\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot 0.5 - z \cdot y\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 14.3 |
|---|
| Cost | 6984 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.3 \cdot 10^{+116}:\\
\;\;\;\;y + \log z \cdot y\\
\mathbf{elif}\;y \leq 1.4 \cdot 10^{+113}:\\
\;\;\;\;x \cdot 0.5 - z \cdot y\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(1 + \log z\right)\\
\end{array}
\]
| Alternative 8 |
|---|
| Error | 28.9 |
|---|
| Cost | 653 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq 6.4 \cdot 10^{+28} \lor \neg \left(z \leq 1.3 \cdot 10^{+38}\right) \land z \leq 1.9 \cdot 10^{+60}:\\
\;\;\;\;x \cdot 0.5\\
\mathbf{else}:\\
\;\;\;\;z \cdot \left(-y\right)\\
\end{array}
\]
| Alternative 9 |
|---|
| Error | 18.0 |
|---|
| Cost | 448 |
|---|
\[x \cdot 0.5 - z \cdot y
\]