| Alternative 1 |
|---|
| Error | 26.4 |
|---|
| Cost | 984 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -2.45 \cdot 10^{-40}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq -3.6 \cdot 10^{-107}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;y \leq -2.1 \cdot 10^{-122}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 1.8 \cdot 10^{-193}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;y \leq 3.3 \cdot 10^{-127}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 6.3 \cdot 10^{+66}:\\
\;\;\;\;x \cdot z\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 23.8 |
|---|
| Cost | 916 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(-x\right)\\
\mathbf{if}\;x \leq -8.6 \cdot 10^{+164}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;x \leq -3.8 \cdot 10^{+18}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -1.72 \cdot 10^{-15}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;x \leq 1:\\
\;\;\;\;y\\
\mathbf{elif}\;x \leq 3.8 \cdot 10^{+179}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;x \cdot z\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 16.9 |
|---|
| Cost | 850 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -2.15 \cdot 10^{-123} \lor \neg \left(y \leq 1.35 \cdot 10^{-193} \lor \neg \left(y \leq 6.5 \cdot 10^{-124}\right) \land y \leq 4.5 \cdot 10^{-35}\right):\\
\;\;\;\;y \cdot \left(1 - x\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot z\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 12.6 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.3 \cdot 10^{-15} \lor \neg \left(x \leq 4.5 \cdot 10^{-74}\right):\\
\;\;\;\;x \cdot \left(z - y\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(1 - x\right)\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 1.0 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4.2 \cdot 10^{+17} \lor \neg \left(x \leq 1\right):\\
\;\;\;\;x \cdot \left(z - y\right)\\
\mathbf{else}:\\
\;\;\;\;y + x \cdot z\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[y + x \cdot \left(z - y\right)
\]