| Alternative 1 |
|---|
| Error | 15.9 |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(1 - x\right)\\
\mathbf{if}\;y \leq -3.0491365115771048 \cdot 10^{-117}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -9.726890206674207 \cdot 10^{-178}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;y \leq -4.4178891406936545 \cdot 10^{-194}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 3.2186848096096415 \cdot 10^{-93}:\\
\;\;\;\;x \cdot z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 15.9 |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(1 - x\right)\\
\mathbf{if}\;y \leq -3.0491365115771048 \cdot 10^{-117}:\\
\;\;\;\;y - x \cdot y\\
\mathbf{elif}\;y \leq -9.726890206674207 \cdot 10^{-178}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;y \leq -4.4178891406936545 \cdot 10^{-194}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 3.2186848096096415 \cdot 10^{-93}:\\
\;\;\;\;x \cdot z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 23.6 |
|---|
| Cost | 784 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(-y\right)\\
\mathbf{if}\;x \leq -1.9 \cdot 10^{+88}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -117400125672067660:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;x \leq 4.9548887232214546 \cdot 10^{-36}:\\
\;\;\;\;y\\
\mathbf{elif}\;x \leq 4.2 \cdot 10^{+28}:\\
\;\;\;\;x \cdot z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 12.4 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(z - y\right)\\
\mathbf{if}\;x \leq -117400125672067660:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 4.9548887232214546 \cdot 10^{-36}:\\
\;\;\;\;y - x \cdot y\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.0 |
|---|
| Cost | 576 |
|---|
\[x \cdot z + y \cdot \left(1 - x\right)
\]
| Alternative 6 |
|---|
| Error | 24.6 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -117400125672067660:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;x \leq 4.9548887232214546 \cdot 10^{-36}:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;x \cdot z\\
\end{array}
\]