| Alternative 1 |
|---|
| Error | 11.1 |
|---|
| Cost | 7888 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(\left(1 + \log z\right) - z\right)\\
t_1 := \mathsf{fma}\left(-z, y, x \cdot 0.5\right)\\
\mathbf{if}\;x \cdot 0.5 \leq -5 \cdot 10^{+38}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;x \cdot 0.5 \leq -100000000:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \cdot 0.5 \leq -5 \cdot 10^{-91}:\\
\;\;\;\;x \cdot 0.5 - z \cdot y\\
\mathbf{elif}\;x \cdot 0.5 \leq 10^{-83}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;t_1\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 0.1 |
|---|
| Cost | 7232 |
|---|
\[x \cdot 0.5 + \left(y \cdot \left(1 + \log z\right) - z \cdot y\right)
\]
| 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.1 |
|---|
| Cost | 7048 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(1 + \log z\right)\\
\mathbf{if}\;y \leq -7.5 \cdot 10^{+129}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 7 \cdot 10^{+170}:\\
\;\;\;\;\mathsf{fma}\left(-z, y, x \cdot 0.5\right)\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 14.1 |
|---|
| Cost | 6984 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(1 + \log z\right)\\
\mathbf{if}\;y \leq -9.5 \cdot 10^{+130}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 8 \cdot 10^{+170}:\\
\;\;\;\;x \cdot 0.5 - z \cdot y\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 28.8 |
|---|
| Cost | 520 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.12 \cdot 10^{-58}:\\
\;\;\;\;x \cdot 0.5\\
\mathbf{elif}\;x \leq 8.4 \cdot 10^{-77}:\\
\;\;\;\;y \cdot \left(-z\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot 0.5\\
\end{array}
\]
| Alternative 8 |
|---|
| Error | 18.1 |
|---|
| Cost | 448 |
|---|
\[x \cdot 0.5 - z \cdot y
\]