| Alternative 1 |
|---|
| Error | 21.7 |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1:\\
\;\;\;\;y \cdot \left(-x\right)\\
\mathbf{elif}\;y \leq 1.05 \cdot 10^{-210}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 2.3 \cdot 10^{-191}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 9.6 \cdot 10^{-158}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(1 - x\right)\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 21.4 |
|---|
| Cost | 716 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq 1.05 \cdot 10^{-210}:\\
\;\;\;\;x \cdot \left(1 - y\right)\\
\mathbf{elif}\;y \leq 2.3 \cdot 10^{-191}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 9.6 \cdot 10^{-158}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(1 - x\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 26.0 |
|---|
| Cost | 592 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1:\\
\;\;\;\;y \cdot \left(-x\right)\\
\mathbf{elif}\;y \leq 1.05 \cdot 10^{-210}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 2.3 \cdot 10^{-191}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 9.6 \cdot 10^{-158}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 30.0 |
|---|
| Cost | 460 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq 1.05 \cdot 10^{-210}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 2.3 \cdot 10^{-191}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 9.6 \cdot 10^{-158}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[\left(y + x\right) - y \cdot x
\]