| Alternative 1 |
|---|
| Error | 12.6 |
|---|
| Cost | 7116 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.46 \cdot 10^{-36}:\\
\;\;\;\;x \cdot \left(-y\right)\\
\mathbf{elif}\;x \leq 8 \cdot 10^{-65}:\\
\;\;\;\;\log 2\\
\mathbf{elif}\;x \leq 9.5 \cdot 10^{-54}:\\
\;\;\;\;x \cdot \left(0.5 - y\right)\\
\mathbf{else}:\\
\;\;\;\;\log 2 + x \cdot 0.5\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 12.8 |
|---|
| Cost | 6988 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.2 \cdot 10^{-42}:\\
\;\;\;\;x \cdot \left(-y\right)\\
\mathbf{elif}\;x \leq 8 \cdot 10^{-65}:\\
\;\;\;\;\log 2\\
\mathbf{elif}\;x \leq 9.2 \cdot 10^{-54}:\\
\;\;\;\;x \cdot \left(0.5 - y\right)\\
\mathbf{else}:\\
\;\;\;\;\log \left(x + 2\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 12.7 |
|---|
| Cost | 6988 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.46 \cdot 10^{-36}:\\
\;\;\;\;x \cdot \left(-y\right)\\
\mathbf{elif}\;x \leq 7.5 \cdot 10^{-65}:\\
\;\;\;\;\log 2\\
\mathbf{elif}\;x \leq 9.2 \cdot 10^{-54}:\\
\;\;\;\;x \cdot \left(0.5 - y\right)\\
\mathbf{else}:\\
\;\;\;\;\mathsf{log1p}\left(x + 1\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.7 |
|---|
| Cost | 6980 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -29500:\\
\;\;\;\;x \cdot \left(-y\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(0.5 - y\right) + \log 2\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 12.8 |
|---|
| Cost | 6860 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.46 \cdot 10^{-36}:\\
\;\;\;\;x \cdot \left(-y\right)\\
\mathbf{elif}\;x \leq 7.6 \cdot 10^{-65}:\\
\;\;\;\;\log 2\\
\mathbf{elif}\;x \leq 1.4 \cdot 10^{-53}:\\
\;\;\;\;x \cdot \left(0.5 - y\right)\\
\mathbf{else}:\\
\;\;\;\;\log 2\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 1.0 |
|---|
| Cost | 6852 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -29500:\\
\;\;\;\;x \cdot \left(-y\right)\\
\mathbf{else}:\\
\;\;\;\;\log 2 - x \cdot y\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 34.4 |
|---|
| Cost | 256 |
|---|
\[x \cdot \left(-y\right)
\]