| Alternative 1 |
|---|
| Error | 26.9 |
|---|
| Cost | 1312 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -2.335692013546964 \cdot 10^{-24}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq -4.228206953008226 \cdot 10^{-73}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq -1.3911802600254683 \cdot 10^{-114}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq -1.0665849218522088 \cdot 10^{-154}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq -6.867932340465391 \cdot 10^{-199}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 2.0208099600057898 \cdot 10^{-70}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq 717315.7439188524:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 3.7 \cdot 10^{+79}:\\
\;\;\;\;x \cdot \left(-z\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 15.3 |
|---|
| Cost | 1112 |
|---|
\[\begin{array}{l}
t_0 := \left(y - x\right) \cdot z\\
\mathbf{if}\;z \leq -2.335692013546964 \cdot 10^{-24}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq -4.228206953008226 \cdot 10^{-73}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq -1.3911802600254683 \cdot 10^{-114}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq -1.0665849218522088 \cdot 10^{-154}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq -6.867932340465391 \cdot 10^{-199}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 2.0208099600057898 \cdot 10^{-70}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 26.7 |
|---|
| Cost | 984 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -2.335692013546964 \cdot 10^{-24}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq -4.228206953008226 \cdot 10^{-73}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq -1.3911802600254683 \cdot 10^{-114}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq -1.0665849218522088 \cdot 10^{-154}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq -6.867932340465391 \cdot 10^{-199}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 2.0208099600057898 \cdot 10^{-70}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 1.2 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -4339070671785.9253:\\
\;\;\;\;\left(y - x\right) \cdot z\\
\mathbf{elif}\;z \leq 2.8755868229424205 \cdot 10^{-8}:\\
\;\;\;\;x + y \cdot z\\
\mathbf{else}:\\
\;\;\;\;y \cdot z - x \cdot z\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 1.2 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := \left(y - x\right) \cdot z\\
\mathbf{if}\;z \leq -4339070671785.9253:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 2.8755868229424205 \cdot 10^{-8}:\\
\;\;\;\;x + y \cdot z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[x + \left(y - x\right) \cdot z
\]