| Alternative 1 |
|---|
| Error | 17.5 |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := x - x \cdot z\\
\mathbf{if}\;x \leq -1.2497137103244571 \cdot 10^{-22}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 1.3781894118032272 \cdot 10^{-182}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;x \leq 7.977203018991137 \cdot 10^{-92}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 8.640540750021597 \cdot 10^{-44}:\\
\;\;\;\;y \cdot z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 15.6 |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := x - x \cdot z\\
t_1 := \left(y - x\right) \cdot z\\
\mathbf{if}\;x \leq -9.065514324971067 \cdot 10^{+64}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 6.311728770155945 \cdot 10^{-174}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;x \leq 3.644563165998775 \cdot 10^{-114}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 342084583155.1468:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 27.7 |
|---|
| Cost | 720 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -9.065514324971067 \cdot 10^{+64}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq 6.311728770155945 \cdot 10^{-174}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;x \leq 7.977203018991137 \cdot 10^{-92}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq 342084583155.1468:\\
\;\;\;\;y \cdot z\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[x + \left(y - x\right) \cdot z
\]