| Alternative 1 |
|---|
| Error | 23.6 |
|---|
| Cost | 1312 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -0.125:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq -1.16 \cdot 10^{-42}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq -7 \cdot 10^{-56}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 2.65 \cdot 10^{-95}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq 4.5 \cdot 10^{-68}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 2.95 \cdot 10^{-24}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq 2.7 \cdot 10^{+45}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 8.5 \cdot 10^{+143}:\\
\;\;\;\;x \cdot \left(-z\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 17.2 |
|---|
| Cost | 1112 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(1 - z\right)\\
\mathbf{if}\;x \leq -6 \cdot 10^{-96}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 4.2 \cdot 10^{-231}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;x \leq 1.2 \cdot 10^{-157}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 4.7 \cdot 10^{-135}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;x \leq 0.27:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 2.9 \cdot 10^{+16}:\\
\;\;\;\;y \cdot z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 12.2 |
|---|
| Cost | 1112 |
|---|
\[\begin{array}{l}
t_0 := \left(y - x\right) \cdot z\\
\mathbf{if}\;z \leq -0.17:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq -2.8 \cdot 10^{-42}:\\
\;\;\;\;x \cdot \left(1 - z\right)\\
\mathbf{elif}\;z \leq -6.8 \cdot 10^{-56}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 2.65 \cdot 10^{-95}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq 2 \cdot 10^{-67}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 1.15 \cdot 10^{-20}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 23.6 |
|---|
| Cost | 984 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -0.125:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq -5.2 \cdot 10^{-42}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq -2.8 \cdot 10^{-55}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 4.2 \cdot 10^{-95}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq 7.4 \cdot 10^{-68}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 3.15 \cdot 10^{-24}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 1.0 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := \left(y - x\right) \cdot z\\
\mathbf{if}\;z \leq -235000000:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 0.00078:\\
\;\;\;\;x + y \cdot z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[x + \left(y - x\right) \cdot z
\]