| Alternative 1 |
|---|
| Error | 21.4 |
|---|
| Cost | 856 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -7.5 \cdot 10^{+179}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq -3.9 \cdot 10^{+26}:\\
\;\;\;\;-y \cdot x\\
\mathbf{elif}\;x \leq -6 \cdot 10^{-47}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq 10^{-120}:\\
\;\;\;\;y\\
\mathbf{elif}\;x \leq 2.1 \cdot 10^{-91}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq 4.3 \cdot 10^{-10}:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 10.6 |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := \left(1 - y\right) \cdot x\\
\mathbf{if}\;x \leq -5 \cdot 10^{-47}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 10^{-120}:\\
\;\;\;\;y\\
\mathbf{elif}\;x \leq 1.45 \cdot 10^{-91}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq 4.6 \cdot 10^{-10}:\\
\;\;\;\;y \cdot \left(1 - x\right)\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 19.8 |
|---|
| Cost | 592 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -3.8 \cdot 10^{-48}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq 10^{-120}:\\
\;\;\;\;y\\
\mathbf{elif}\;x \leq 1.55 \cdot 10^{-91}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq 4.3 \cdot 10^{-10}:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 9.6 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(1 - x\right)\\
\mathbf{if}\;y \leq -1.75 \cdot 10^{-34}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 2.4 \cdot 10^{-7}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[\left(x + y\right) - x \cdot y
\]