| Alternative 1 |
|---|
| Error | 37.75% |
|---|
| Cost | 1048 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(-x\right)\\
\mathbf{if}\;x \leq -7.1 \cdot 10^{+168}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq -7.2 \cdot 10^{+128}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -2 \cdot 10^{-28}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq -9.2 \cdot 10^{-73}:\\
\;\;\;\;y\\
\mathbf{elif}\;x \leq -2.8 \cdot 10^{-111}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq 1:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 15.95% |
|---|
| Cost | 850 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2 \cdot 10^{-28} \lor \neg \left(x \leq -3.2 \cdot 10^{-74} \lor \neg \left(x \leq -2 \cdot 10^{-111}\right) \land x \leq 8 \cdot 10^{-5}\right):\\
\;\;\;\;x \cdot \left(1 - y\right)\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 28.98% |
|---|
| Cost | 716 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(1 - y\right)\\
\mathbf{if}\;x \leq -1.7 \cdot 10^{-28}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -6.5 \cdot 10^{-74}:\\
\;\;\;\;y\\
\mathbf{elif}\;x \leq -2.8 \cdot 10^{-111}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;y - y \cdot x\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 43.7% |
|---|
| Cost | 460 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -3.6 \cdot 10^{-28}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq -1.36 \cdot 10^{-70}:\\
\;\;\;\;y\\
\mathbf{elif}\;x \leq -2.7 \cdot 10^{-111}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.01% |
|---|
| Cost | 448 |
|---|
\[\left(y + x\right) - y \cdot x
\]