| Alternative 1 |
|---|
| Accuracy | 80.2% |
|---|
| Cost | 6992 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(-y\right)\\
\mathbf{if}\;x \leq -1.7 \cdot 10^{-12}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -6.6 \cdot 10^{-43}:\\
\;\;\;\;\log 2\\
\mathbf{elif}\;x \leq -2.6 \cdot 10^{-79}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 4.8 \cdot 10^{-64}:\\
\;\;\;\;\log 2\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(0.5 - y\right)\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 80.2% |
|---|
| Cost | 6992 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(-y\right)\\
\mathbf{if}\;x \leq -7 \cdot 10^{-12}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -6.6 \cdot 10^{-43}:\\
\;\;\;\;\log 2 + x \cdot 0.5\\
\mathbf{elif}\;x \leq -2.45 \cdot 10^{-79}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 4.7 \cdot 10^{-64}:\\
\;\;\;\;\log 2\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(0.5 - y\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 98.8% |
|---|
| Cost | 6980 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -520000000:\\
\;\;\;\;x \cdot \left(-y\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(0.5 - y\right) + \log 2\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 98.4% |
|---|
| Cost | 6852 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -520000000:\\
\;\;\;\;x \cdot \left(-y\right)\\
\mathbf{else}:\\
\;\;\;\;\log 2 - x \cdot y\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 47.1% |
|---|
| Cost | 256 |
|---|
\[x \cdot \left(-y\right)
\]