| Alternative 1 |
|---|
| Error | 37.89% |
|---|
| Cost | 784 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(-y\right)\\
\mathbf{if}\;x \leq -1.6 \cdot 10^{+214}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;x \leq -1:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 1.02 \cdot 10^{-20}:\\
\;\;\;\;y\\
\mathbf{elif}\;x \leq 6.5 \cdot 10^{+80}:\\
\;\;\;\;x \cdot z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 18.9% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -7.2 \cdot 10^{-13} \lor \neg \left(x \leq 9.8 \cdot 10^{-21}\right):\\
\;\;\;\;x \cdot \left(z - y\right)\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 1.46% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -340 \lor \neg \left(x \leq 1\right):\\
\;\;\;\;x \cdot \left(z - y\right)\\
\mathbf{else}:\\
\;\;\;\;y + x \cdot z\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 36.99% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.7 \cdot 10^{-11}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;x \leq 1.02 \cdot 10^{-20}:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;x \cdot z\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.02% |
|---|
| Cost | 448 |
|---|
\[y + x \cdot \left(z - y\right)
\]