| Alternative 1 |
|---|
| Error | 23.6 |
|---|
| Cost | 916 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \left(-x\right)\\
\mathbf{if}\;z \leq -1.85 \cdot 10^{+94}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq -0.0138:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 3.7 \cdot 10^{-50}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq 10^{+33}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 1.85 \cdot 10^{+92}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 15.9 |
|---|
| Cost | 850 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -7.6 \cdot 10^{-178} \lor \neg \left(x \leq 2.45 \cdot 10^{-120}\right) \land \left(x \leq 8.8 \cdot 10^{-99} \lor \neg \left(x \leq 6 \cdot 10^{-93}\right)\right):\\
\;\;\;\;x \cdot \left(1 - z\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 12.5 |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := \left(y - x\right) \cdot z\\
t_1 := x \cdot \left(1 - z\right)\\
\mathbf{if}\;z \leq -800000000000:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 3.8 \cdot 10^{-50}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;z \leq 1.95 \cdot 10^{-18}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 14.2:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.8 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1 \lor \neg \left(z \leq 0.0022\right):\\
\;\;\;\;\left(y - x\right) \cdot z\\
\mathbf{else}:\\
\;\;\;\;x + y \cdot z\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.0 |
|---|
| Cost | 576 |
|---|
\[\left(x + y \cdot z\right) - x \cdot z
\]
| Alternative 6 |
|---|
| Error | 23.1 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -9 \cdot 10^{-6}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 3.9 \cdot 10^{-50}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[x + \left(y - x\right) \cdot z
\]