| Alternative 1 |
|---|
| Error | 11.0 |
|---|
| Cost | 7368 |
|---|
\[\begin{array}{l}
t_0 := \mathsf{fma}\left(-z, y, x \cdot 0.5\right)\\
\mathbf{if}\;x \cdot 0.5 \leq -5 \cdot 10^{+36}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \cdot 0.5 \leq 2 \cdot 10^{-133}:\\
\;\;\;\;\left(\left(1 - z\right) + \log z\right) \cdot y\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 15.7 |
|---|
| Cost | 7312 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(1 + \log z\right)\\
t_1 := \mathsf{fma}\left(-z, y, x \cdot 0.5\right)\\
\mathbf{if}\;y \leq -3.4 \cdot 10^{+260}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -9 \cdot 10^{+174}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq -1.85 \cdot 10^{+95}:\\
\;\;\;\;y + \log z \cdot y\\
\mathbf{elif}\;y \leq 9.5 \cdot 10^{+146}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 15.7 |
|---|
| Cost | 7248 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(1 + \log z\right)\\
t_1 := x \cdot 0.5 - z \cdot y\\
\mathbf{if}\;y \leq -3.4 \cdot 10^{+260}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -9 \cdot 10^{+174}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq -1.85 \cdot 10^{+95}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 9.5 \cdot 10^{+146}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 15.7 |
|---|
| Cost | 7248 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(1 + \log z\right)\\
t_1 := x \cdot 0.5 - z \cdot y\\
\mathbf{if}\;y \leq -3.4 \cdot 10^{+260}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -9 \cdot 10^{+174}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq -1.85 \cdot 10^{+95}:\\
\;\;\;\;y + \log z \cdot y\\
\mathbf{elif}\;y \leq 9.5 \cdot 10^{+146}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.8 |
|---|
| Cost | 7108 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq 0.0055923287941229164:\\
\;\;\;\;\log z \cdot y + \left(y + x \cdot 0.5\right)\\
\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(-z, y, x \cdot 0.5\right)\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.8 |
|---|
| Cost | 7108 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq 0.0055923287941229164:\\
\;\;\;\;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 7 |
|---|
| Error | 0.1 |
|---|
| Cost | 7104 |
|---|
\[x \cdot 0.5 + \left(y + y \cdot \left(\log z - z\right)\right)
\]
| Alternative 8 |
|---|
| Error | 0.1 |
|---|
| Cost | 7104 |
|---|
\[x \cdot 0.5 + \left(\left(1 - z\right) + \log z\right) \cdot y
\]
| Alternative 9 |
|---|
| Error | 28.8 |
|---|
| Cost | 520 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4.852535027269698 \cdot 10^{-177}:\\
\;\;\;\;x \cdot 0.5\\
\mathbf{elif}\;x \leq 5.001402823694266 \cdot 10^{-44}:\\
\;\;\;\;z \cdot \left(-y\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot 0.5\\
\end{array}
\]
| Alternative 10 |
|---|
| Error | 18.0 |
|---|
| Cost | 448 |
|---|
\[x \cdot 0.5 - z \cdot y
\]