| Alternative 1 |
|---|
| Error | 23.7 |
|---|
| Cost | 916 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \left(-x\right)\\
\mathbf{if}\;z \leq -1.25 \cdot 10^{+215}:\\
\;\;\;\;z \cdot y\\
\mathbf{elif}\;z \leq -2.5279591138776153 \cdot 10^{+30}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq -2.6836822942390764 \cdot 10^{-48}:\\
\;\;\;\;z \cdot y\\
\mathbf{elif}\;z \leq 8.640531797436794 \cdot 10^{-8}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq 6.4 \cdot 10^{+176}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;z \cdot y\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 16.6 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(1 - z\right)\\
\mathbf{if}\;x \leq -9.64741452204481 \cdot 10^{-192}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 2.8031715888660024 \cdot 10^{-147}:\\
\;\;\;\;z \cdot y\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 11.8 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \left(y - x\right)\\
\mathbf{if}\;z \leq -2.6836822942390764 \cdot 10^{-48}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 6.771056242562191 \cdot 10^{-27}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 1.6 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \left(y - x\right)\\
\mathbf{if}\;z \leq -19505355390682.14:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 6.771056242562191 \cdot 10^{-27}:\\
\;\;\;\;x + z \cdot y\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 1.6 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -19505355390682.14:\\
\;\;\;\;z \cdot y - x \cdot z\\
\mathbf{elif}\;z \leq 6.771056242562191 \cdot 10^{-27}:\\
\;\;\;\;x + z \cdot y\\
\mathbf{else}:\\
\;\;\;\;z \cdot \left(y - x\right)\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.0 |
|---|
| Cost | 576 |
|---|
\[x + \left(z \cdot y - x \cdot z\right)
\]
| Alternative 7 |
|---|
| Error | 23.2 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -2.6836822942390764 \cdot 10^{-48}:\\
\;\;\;\;z \cdot y\\
\mathbf{elif}\;z \leq 6.771056242562191 \cdot 10^{-27}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;z \cdot y\\
\end{array}
\]
| Alternative 8 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[x + z \cdot \left(y - x\right)
\]