| Alternative 1 |
|---|
| Error | 9.6 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
t_1 := \left(y \cdot x + z\right) \cdot y\\
\mathbf{if}\;y \leq -1.02 \cdot 10^{+39}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq 480:\\
\;\;\;\;z \cdot y + t\\
\mathbf{else}:\\
\;\;\;\;t_1\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 5.4 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
t_1 := z \cdot y + t\\
\mathbf{if}\;z \leq -2.35 \cdot 10^{+76}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;z \leq 1.16 \cdot 10^{+38}:\\
\;\;\;\;\left(y \cdot x\right) \cdot y + t\\
\mathbf{else}:\\
\;\;\;\;t_1\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 0.1 |
|---|
| Cost | 704 |
|---|
\[\left(\left(x \cdot y\right) \cdot y + y \cdot z\right) + t
\]
| Alternative 4 |
|---|
| Error | 25.9 |
|---|
| Cost | 588 |
|---|
\[\begin{array}{l}
\mathbf{if}\;t \leq -3.5 \cdot 10^{-11}:\\
\;\;\;\;t\\
\mathbf{elif}\;t \leq -2.7 \cdot 10^{-156}:\\
\;\;\;\;\left(x \cdot y\right) \cdot y\\
\mathbf{elif}\;t \leq 3.4 \cdot 10^{-81}:\\
\;\;\;\;y \cdot z\\
\mathbf{else}:\\
\;\;\;\;t\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 12.5 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_1 := \left(x \cdot y\right) \cdot y\\
\mathbf{if}\;y \leq -8 \cdot 10^{+63}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq 1.05 \cdot 10^{+159}:\\
\;\;\;\;z \cdot y + t\\
\mathbf{else}:\\
\;\;\;\;t_1\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.1 |
|---|
| Cost | 576 |
|---|
\[\left(x \cdot y + z\right) \cdot y + t
\]
| Alternative 7 |
|---|
| Error | 24.9 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;t \leq -9 \cdot 10^{-129}:\\
\;\;\;\;t\\
\mathbf{elif}\;t \leq 3.2 \cdot 10^{-78}:\\
\;\;\;\;y \cdot z\\
\mathbf{else}:\\
\;\;\;\;t\\
\end{array}
\]