| Alternative 1 |
|---|
| Error | 37.3% |
|---|
| Cost | 1116 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.75 \cdot 10^{+162}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq -3 \cdot 10^{+83}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq -720000000000:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq -2.75 \cdot 10^{-36}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq -2.1 \cdot 10^{-82}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq -3.8 \cdot 10^{-111}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 5.9 \cdot 10^{-21}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 20.17% |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(x + z\right)\\
\mathbf{if}\;y \leq -1.25 \cdot 10^{-36}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -3.6 \cdot 10^{-82}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq -3.8 \cdot 10^{-111}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 2.6 \cdot 10^{-53}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 20.12% |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(x + z\right)\\
\mathbf{if}\;y \leq -2.05 \cdot 10^{-36}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -1.4 \cdot 10^{-82}:\\
\;\;\;\;x \cdot \left(y + 1\right)\\
\mathbf{elif}\;y \leq -3.8 \cdot 10^{-111}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 4.5 \cdot 10^{-53}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 1.29% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -220 \lor \neg \left(y \leq 1\right):\\
\;\;\;\;y \cdot \left(x + z\right)\\
\mathbf{else}:\\
\;\;\;\;x + y \cdot z\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 37.29% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -220:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 1:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.02% |
|---|
| Cost | 448 |
|---|
\[x + y \cdot \left(x + z\right)
\]