| Alternative 1 |
|---|
| Error | 0.6 |
|---|
| Cost | 6980 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.38:\\
\;\;\;\;y \cdot \left(-x\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(0.5 - y\right) + \log 2\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 0.9 |
|---|
| Cost | 6852 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -26:\\
\;\;\;\;y \cdot \left(-x\right)\\
\mathbf{else}:\\
\;\;\;\;\log 2 - x \cdot y\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 12.0 |
|---|
| Cost | 6728 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4.4 \cdot 10^{-21}:\\
\;\;\;\;y \cdot \left(-x\right)\\
\mathbf{elif}\;x \leq 1.55 \cdot 10^{-28}:\\
\;\;\;\;\log 2\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(0.5 - y\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 33.4 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4.2 \cdot 10^{-169}:\\
\;\;\;\;y \cdot \left(-x\right)\\
\mathbf{elif}\;x \leq 2.8 \cdot 10^{-159}:\\
\;\;\;\;1\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(0.5 - y\right)\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 33.7 |
|---|
| Cost | 520 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(-x\right)\\
\mathbf{if}\;x \leq -8.8 \cdot 10^{-173}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 3.6 \cdot 10^{-159}:\\
\;\;\;\;1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]