| Alternative 1 |
|---|
| Error | 26.1 |
|---|
| Cost | 1048 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(-y\right)\\
\mathbf{if}\;x \leq -1.8 \cdot 10^{+33}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq -5.5 \cdot 10^{-112}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;x \leq -6.3 \cdot 10^{-139}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 4.6 \cdot 10^{-95}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;x \leq 3.2 \cdot 10^{+40}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq 2 \cdot 10^{+56}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 15.8 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.25 \cdot 10^{-139} \lor \neg \left(x \leq 4.2 \cdot 10^{-116}\right):\\
\;\;\;\;x \cdot \left(1 - y\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 14.0 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.8 \cdot 10^{+33} \lor \neg \left(x \leq 2.85 \cdot 10^{-95}\right):\\
\;\;\;\;x \cdot \left(1 - y\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(z - x\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.8 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -400 \lor \neg \left(y \leq 0.044\right):\\
\;\;\;\;y \cdot \left(z - x\right)\\
\mathbf{else}:\\
\;\;\;\;x + y \cdot z\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 25.3 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.8 \cdot 10^{+33}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq 2.75 \cdot 10^{-95}:\\
\;\;\;\;y \cdot z\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[x + y \cdot \left(z - x\right)
\]