| Alternative 1 |
|---|
| Error | 12.2 |
|---|
| Cost | 7116 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(-x\right)\\
t_1 := \log 2 + x \cdot 0.5\\
\mathbf{if}\;x \leq -8.8 \cdot 10^{-7}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 2.5 \cdot 10^{-84}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;x \leq 5.3 \cdot 10^{-71}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;t_1\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 12.2 |
|---|
| Cost | 6992 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(-x\right)\\
\mathbf{if}\;x \leq -6.4 \cdot 10^{-7}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 2.5 \cdot 10^{-84}:\\
\;\;\;\;\log 2\\
\mathbf{elif}\;x \leq 5.3 \cdot 10^{-71}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 3.5 \cdot 10^{-13}:\\
\;\;\;\;\log 2\\
\mathbf{else}:\\
\;\;\;\;\frac{x}{y + 0.5} \cdot \left(0.25 - y \cdot y\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 12.2 |
|---|
| Cost | 6988 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(-x\right)\\
t_1 := \log \left(x + 2\right)\\
\mathbf{if}\;x \leq -6.5 \cdot 10^{-7}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 2.5 \cdot 10^{-84}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;x \leq 5.3 \cdot 10^{-71}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;t_1\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.5 |
|---|
| Cost | 6980 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.4:\\
\;\;\;\;y \cdot \left(-x\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(0.5 - y\right) + \log 2\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.9 |
|---|
| Cost | 6852 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -28500000:\\
\;\;\;\;y \cdot \left(-x\right)\\
\mathbf{else}:\\
\;\;\;\;\log 2 - x \cdot y\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 34.3 |
|---|
| Cost | 256 |
|---|
\[y \cdot \left(-x\right)
\]