| Alternative 1 |
|---|
| Error | 23.7 |
|---|
| Cost | 588 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -4.2 \cdot 10^{+95}:\\
\;\;\;\;x \cdot \left(-z\right)\\
\mathbf{elif}\;z \leq -1.3876203111632268 \cdot 10^{-21}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 5.31083779224997 \cdot 10^{-16}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 15.3 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(1 - z\right)\\
\mathbf{if}\;x \leq -8.485827140897687 \cdot 10^{-103}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 4.429184153709283 \cdot 10^{-100}:\\
\;\;\;\;y \cdot z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 7.5 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := x + y \cdot z\\
\mathbf{if}\;y \leq -4.285222997519684 \cdot 10^{-192}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 8.147564249944315 \cdot 10^{-160}:\\
\;\;\;\;x \cdot \left(1 - z\right)\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 1.3 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := \left(y - x\right) \cdot z\\
\mathbf{if}\;z \leq -32123871787600847000:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 0.006601804980362321:\\
\;\;\;\;x + y \cdot z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.0 |
|---|
| Cost | 576 |
|---|
\[x + \left(y \cdot z - x \cdot z\right)
\]
| Alternative 6 |
|---|
| Error | 23.7 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1.3876203111632268 \cdot 10^{-21}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 5.31083779224997 \cdot 10^{-16}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[x + \left(y - x\right) \cdot z
\]