| Alternative 1 |
|---|
| Error | 18.2 |
|---|
| Cost | 7972 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(1 + \log z\right)\\
t_1 := x \cdot 0.5 - z \cdot y\\
\mathbf{if}\;z \leq 3.3 \cdot 10^{-252}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 5.3 \cdot 10^{-229}:\\
\;\;\;\;x \cdot 0.5\\
\mathbf{elif}\;z \leq 1.1 \cdot 10^{-206}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 3.5 \cdot 10^{-117}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;z \leq 5.2 \cdot 10^{-100}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 6.5 \cdot 10^{-84}:\\
\;\;\;\;x \cdot 0.5\\
\mathbf{elif}\;z \leq 1.38 \cdot 10^{-64}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 1.6 \cdot 10^{-49}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;z \leq 7.2 \cdot 10^{-26}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(-z, y, x \cdot 0.5\right)\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 18.1 |
|---|
| Cost | 7909 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(1 + \log z\right)\\
t_1 := x \cdot 0.5 - z \cdot y\\
\mathbf{if}\;z \leq 2 \cdot 10^{-251}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 8.5 \cdot 10^{-229}:\\
\;\;\;\;x \cdot 0.5\\
\mathbf{elif}\;z \leq 2.2 \cdot 10^{-206}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 2.8 \cdot 10^{-117}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;z \leq 2.2 \cdot 10^{-110}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 3.2 \cdot 10^{-84}:\\
\;\;\;\;x \cdot 0.5\\
\mathbf{elif}\;z \leq 1.26 \cdot 10^{-64} \lor \neg \left(z \leq 1.2 \cdot 10^{-49}\right) \land z \leq 1.2 \cdot 10^{-25}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;t_1\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 10.5 |
|---|
| Cost | 7369 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \cdot 0.5 \leq -1 \cdot 10^{-101} \lor \neg \left(x \cdot 0.5 \leq 4 \cdot 10^{-32}\right):\\
\;\;\;\;\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 4 |
|---|
| Error | 0.8 |
|---|
| Cost | 7108 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq 0.0175:\\
\;\;\;\;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 5 |
|---|
| Error | 0.1 |
|---|
| Cost | 7104 |
|---|
\[x \cdot 0.5 + \left(\left(1 - z\right) + \log z\right) \cdot y
\]
| Alternative 6 |
|---|
| Error | 28.1 |
|---|
| Cost | 786 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -3.5 \cdot 10^{+14} \lor \neg \left(x \leq -7.5 \cdot 10^{-22}\right) \land \left(x \leq -7.6 \cdot 10^{-38} \lor \neg \left(x \leq 40000\right)\right):\\
\;\;\;\;x \cdot 0.5\\
\mathbf{else}:\\
\;\;\;\;z \cdot \left(-y\right)\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 17.7 |
|---|
| Cost | 448 |
|---|
\[x \cdot 0.5 - z \cdot y
\]