| Alternative 1 |
|---|
| Error | 37.85% |
|---|
| Cost | 985 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -2.2 \cdot 10^{+73}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq -3.3 \cdot 10^{-60}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 3.6 \cdot 10^{-15}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 1.02 \cdot 10^{+126} \lor \neg \left(y \leq 1.8 \cdot 10^{+232}\right) \land y \leq 2.35 \cdot 10^{+264}:\\
\;\;\;\;y \cdot z\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 20.17% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -2.55 \cdot 10^{-26} \lor \neg \left(y \leq 3 \cdot 10^{-15}\right):\\
\;\;\;\;y \cdot \left(x + z\right)\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 1.25% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1 \lor \neg \left(y \leq 0.145\right):\\
\;\;\;\;y \cdot \left(x + z\right)\\
\mathbf{else}:\\
\;\;\;\;x + y \cdot z\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.03% |
|---|
| Cost | 576 |
|---|
\[y \cdot z + x \cdot \left(y + 1\right)
\]
| Alternative 5 |
|---|
| Error | 38.77% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.55 \cdot 10^{-16}:\\
\;\;\;\;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)
\]