| Alternative 1 |
|---|
| Error | 17.1 |
|---|
| Cost | 784 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(-x\right)\\
\mathbf{if}\;y \leq -1:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 1.65 \cdot 10^{-37}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 6.5 \cdot 10^{+110}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 1.06 \cdot 10^{+170}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 8.6 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1:\\
\;\;\;\;y \cdot \left(-x\right)\\
\mathbf{elif}\;y \leq 4 \cdot 10^{-38}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(1 - x\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 8.2 |
|---|
| Cost | 452 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq 1.9 \cdot 10^{-37}:\\
\;\;\;\;x \cdot \left(1 - y\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(1 - x\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 8.1 |
|---|
| Cost | 452 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq 3.1 \cdot 10^{-38}:\\
\;\;\;\;x - y \cdot x\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(1 - x\right)\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[\left(y + x\right) - y \cdot x
\]
| Alternative 6 |
|---|
| Error | 17.7 |
|---|
| Cost | 196 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq 5.6 \cdot 10^{-38}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]