| Alternative 1 |
|---|
| Error | 24.0 |
|---|
| Cost | 1180 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(-x\right)\\
\mathbf{if}\;y \leq -5.1 \cdot 10^{+172}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -6.9 \cdot 10^{+118}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq -1900000000:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -4.2 \cdot 10^{-55}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 0.0023:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 1.75 \cdot 10^{+73}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 7.9 \cdot 10^{+201}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 13.5 |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(1 - y\right)\\
t_1 := y \cdot \left(z - x\right)\\
\mathbf{if}\;x \leq -2.7 \cdot 10^{-7}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -5.5 \cdot 10^{-72}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;x \leq -4.5 \cdot 10^{-136}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 6.6 \cdot 10^{-73}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 12.6 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(z - x\right)\\
\mathbf{if}\;y \leq -1.2 \cdot 10^{-57}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 0.0023:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 24.1 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -3.5 \cdot 10^{-55}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 0.0023:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[x + y \cdot \left(z - x\right)
\]