| Alternative 1 |
|---|
| Error | 18.4 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -6 \cdot 10^{-10}:\\
\;\;\;\;z \cdot y\\
\mathbf{elif}\;z \leq 2.1 \cdot 10^{+131}:\\
\;\;\;\;\left(1 + y\right) \cdot x\\
\mathbf{else}:\\
\;\;\;\;z \cdot y\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 12.7 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := \left(x + z\right) \cdot y\\
\mathbf{if}\;y \leq -0.0042:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 7.5 \cdot 10^{-77}:\\
\;\;\;\;\left(1 + y\right) \cdot x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 12.7 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := \left(x + z\right) \cdot y\\
\mathbf{if}\;y \leq -0.0195:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 3.5 \cdot 10^{-77}:\\
\;\;\;\;y \cdot x + x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 24.6 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 4.3 \cdot 10^{-18}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 24.2 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 7.5 \cdot 10^{-77}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;z \cdot y\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[x + y \cdot \left(z + x\right)
\]