| Alternative 1 |
|---|
| Error | 23.8 |
|---|
| Cost | 1180 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \left(-y\right)\\
\mathbf{if}\;y \leq -3.05 \cdot 10^{+100}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -1.12 \cdot 10^{+64}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq -6.2 \cdot 10^{+41}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -1.7 \cdot 10^{-61}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 4.7 \cdot 10^{-54}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq 4 \cdot 10^{+68}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 3 \cdot 10^{+187}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 12.0 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.9 \cdot 10^{-61} \lor \neg \left(y \leq 1.7 \cdot 10^{-15}\right):\\
\;\;\;\;y \cdot \left(x - z\right)\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 12.0 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.9 \cdot 10^{-61} \lor \neg \left(y \leq 4.4 \cdot 10^{-15}\right):\\
\;\;\;\;y \cdot \left(x - z\right)\\
\mathbf{else}:\\
\;\;\;\;z \cdot \left(1 - y\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.9 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1 \lor \neg \left(y \leq 0.0006\right):\\
\;\;\;\;y \cdot \left(x - z\right)\\
\mathbf{else}:\\
\;\;\;\;z + y \cdot x\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.0 |
|---|
| Cost | 576 |
|---|
\[z \cdot \left(1 - y\right) + y \cdot x
\]
| Alternative 6 |
|---|
| Error | 23.3 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.9 \cdot 10^{-61}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 8 \cdot 10^{-54}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[z + y \cdot \left(x - z\right)
\]