| Alternative 1 |
|---|
| Error | 0.7 |
|---|
| Cost | 13252 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4.756070287480474:\\
\;\;\;\;y \cdot \left(-x\right)\\
\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(0.5 - y, x, \log 2\right)\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 14.8 |
|---|
| Cost | 7380 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(-x\right)\\
\mathbf{if}\;x \leq -3.308989048626094 \cdot 10^{-53}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -2.61843447116034 \cdot 10^{-72}:\\
\;\;\;\;\log 2\\
\mathbf{elif}\;x \leq -1.8005885629189804 \cdot 10^{-104}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 2.698324984156151 \cdot 10^{-194}:\\
\;\;\;\;\log 2\\
\mathbf{elif}\;x \leq 4.725127280463317 \cdot 10^{-157}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;\log 2 + x \cdot 0.5\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 15.0 |
|---|
| Cost | 7124 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(-x\right)\\
\mathbf{if}\;x \leq -3.308989048626094 \cdot 10^{-53}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -2.61843447116034 \cdot 10^{-72}:\\
\;\;\;\;\log 2\\
\mathbf{elif}\;x \leq -1.8005885629189804 \cdot 10^{-104}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 2.698324984156151 \cdot 10^{-194}:\\
\;\;\;\;\log 2\\
\mathbf{elif}\;x \leq 4.725127280463317 \cdot 10^{-157}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;\log 2\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.7 |
|---|
| Cost | 6980 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4.756070287480474:\\
\;\;\;\;y \cdot \left(-x\right)\\
\mathbf{else}:\\
\;\;\;\;\log 2 + x \cdot \left(0.5 - y\right)\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 34.3 |
|---|
| Cost | 256 |
|---|
\[y \cdot \left(-x\right)
\]