| Alternative 1 |
|---|
| Error | 23.3 |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(z \cdot -6\right)\\
t_1 := z \cdot \left(y \cdot 6\right)\\
\mathbf{if}\;z \leq -1.05 \cdot 10^{+170}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq -5.567232930020688 \cdot 10^{-45}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;z \leq 6.711339771599431 \cdot 10^{-43}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq 4.7 \cdot 10^{+163}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 12.2 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \frac{y - x}{0.16666666666666666}\\
\mathbf{if}\;z \leq -5.567232930020688 \cdot 10^{-45}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 6.711339771599431 \cdot 10^{-43}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 1.1 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \frac{y - x}{0.16666666666666666}\\
\mathbf{if}\;z \leq -295.83775631282674:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 2.8118671384652743 \cdot 10^{-10}:\\
\;\;\;\;x + y \cdot \left(6 \cdot z\right)\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 1.1 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
t_0 := 6 \cdot \left(\left(y - x\right) \cdot z\right)\\
\mathbf{if}\;z \leq -295.83775631282674:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 2.8118671384652743 \cdot 10^{-10}:\\
\;\;\;\;x + y \cdot \left(6 \cdot z\right)\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 24.3 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(z \cdot -6\right)\\
\mathbf{if}\;z \leq -295.83775631282674:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 1.2539690738301006:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 24.3 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -295.83775631282674:\\
\;\;\;\;-6 \cdot \left(x \cdot z\right)\\
\mathbf{elif}\;z \leq 1.2539690738301006:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(z \cdot -6\right)\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 0.2 |
|---|
| Cost | 576 |
|---|
\[x + \left(y - x\right) \cdot \left(6 \cdot z\right)
\]
| Alternative 8 |
|---|
| Error | 0.3 |
|---|
| Cost | 576 |
|---|
\[x + \left(\left(y - x\right) \cdot 6\right) \cdot z
\]