| Alternative 1 |
|---|
| Error | 24.2 |
|---|
| Cost | 852 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -150000:\\
\;\;\;\;z \cdot \left(-y\right)\\
\mathbf{elif}\;y \leq -4.5 \cdot 10^{-37}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq -3.7 \cdot 10^{-121}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq -3.2 \cdot 10^{-147}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 1.5 \cdot 10^{-47}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 13.3 |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(x - z\right)\\
\mathbf{if}\;y \leq -6.6 \cdot 10^{-62}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -3.7 \cdot 10^{-121}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq -3 \cdot 10^{-147}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 4.3 \cdot 10^{-48}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 13.4 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -175000000 \lor \neg \left(z \leq 9 \cdot 10^{-20}\right):\\
\;\;\;\;z \cdot \left(1 - y\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(x - z\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.9 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1950 \lor \neg \left(y \leq 1\right):\\
\;\;\;\;y \cdot \left(x - z\right)\\
\mathbf{else}:\\
\;\;\;\;z + y \cdot x\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 24.7 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -9200000:\\
\;\;\;\;z\\
\mathbf{elif}\;z \leq 4 \cdot 10^{-20}:\\
\;\;\;\;y \cdot x\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[z + y \cdot \left(x - z\right)
\]