| Alternative 1 |
|---|
| Error | 23.0 |
|---|
| Cost | 784 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(-x\right)\\
\mathbf{if}\;y \leq -1:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 4.3 \cdot 10^{-10}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 2.25 \cdot 10^{+58}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 6.9 \cdot 10^{+65}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 18.4 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1:\\
\;\;\;\;y \cdot \left(-x\right)\\
\mathbf{elif}\;y \leq 4.5 \cdot 10^{-10}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(1 - x\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 18.0 |
|---|
| Cost | 452 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq 1.1 \cdot 10^{-6}:\\
\;\;\;\;x \cdot \left(1 - y\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(1 - x\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 18.0 |
|---|
| Cost | 452 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq 2.5 \cdot 10^{-5}:\\
\;\;\;\;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 | 27.0 |
|---|
| Cost | 196 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq 4.3 \cdot 10^{-10}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]