| Alternative 1 |
|---|
| Error | 25.5 |
|---|
| Cost | 1312 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \left(-x\right)\\
\mathbf{if}\;z \leq -7.6 \cdot 10^{+116}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq -7.8 \cdot 10^{+41}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq -108693584637327.83:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 3.6418935961236943 \cdot 10^{-103}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq 1.45 \cdot 10^{+57}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 5.6 \cdot 10^{+126}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 1.4 \cdot 10^{+201}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 1.55 \cdot 10^{+233}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 13.6 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := \left(y - x\right) \cdot z\\
\mathbf{if}\;z \leq -4.6181362329332:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 3.6418935961236943 \cdot 10^{-103}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 13.5 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := \left(y - x\right) \cdot z\\
\mathbf{if}\;z \leq -108693584637327.83:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 3.6418935961236943 \cdot 10^{-103}:\\
\;\;\;\;x - x \cdot z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 1.3 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := \left(y - x\right) \cdot z\\
\mathbf{if}\;z \leq -4.6181362329332:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 1.8896137520537308 \cdot 10^{-21}:\\
\;\;\;\;x + y \cdot z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 25.3 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -108693584637327.83:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 3.6418935961236943 \cdot 10^{-103}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[x + \left(y - x\right) \cdot z
\]