| Alternative 1 |
|---|
| Error | 10.7 |
|---|
| Cost | 7112 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(\left(1 + \log z\right) - z\right)\\
\mathbf{if}\;y \leq -7.8 \cdot 10^{+76}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 9 \cdot 10^{+93}:\\
\;\;\;\;\mathsf{fma}\left(-z, y, x \cdot 0.5\right)\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\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.6 |
|---|
| Cost | 7048 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(1 + \log z\right)\\
\mathbf{if}\;y \leq -4.8 \cdot 10^{+233}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 2.4 \cdot 10^{+143}:\\
\;\;\;\;\mathsf{fma}\left(-z, y, x \cdot 0.5\right)\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 14.6 |
|---|
| Cost | 6984 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(1 + \log z\right)\\
\mathbf{if}\;y \leq -4.8 \cdot 10^{+233}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 2.2 \cdot 10^{+143}:\\
\;\;\;\;x \cdot 0.5 - z \cdot y\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 29.2 |
|---|
| Cost | 784 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \left(-y\right)\\
\mathbf{if}\;x \leq -1.35 \cdot 10^{-55}:\\
\;\;\;\;x \cdot 0.5\\
\mathbf{elif}\;x \leq 1.15 \cdot 10^{-51}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 0.000116:\\
\;\;\;\;x \cdot 0.5\\
\mathbf{elif}\;x \leq 7.5 \cdot 10^{+71}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;x \cdot 0.5\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 18.4 |
|---|
| Cost | 448 |
|---|
\[x \cdot 0.5 - z \cdot y
\]