| Alternative 1 |
|---|
| Error | 39.95% |
|---|
| Cost | 852 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -3.1 \cdot 10^{-65}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 1.25 \cdot 10^{-107}:\\
\;\;\;\;-z\\
\mathbf{elif}\;x \leq 1.36 \cdot 10^{-49}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 3.1 \cdot 10^{-11}:\\
\;\;\;\;-z\\
\mathbf{elif}\;x \leq 1.55 \cdot 10^{+106}:\\
\;\;\;\;x \cdot y\\
\mathbf{else}:\\
\;\;\;\;x \cdot z\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 21.35% |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(y + z\right)\\
\mathbf{if}\;x \leq -1.12 \cdot 10^{-70}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 1.8 \cdot 10^{-106}:\\
\;\;\;\;-z\\
\mathbf{elif}\;x \leq 1.65 \cdot 10^{-50}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 6.8 \cdot 10^{-12}:\\
\;\;\;\;-z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 39.73% |
|---|
| Cost | 721 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.25 \cdot 10^{-66}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 3.8 \cdot 10^{-106} \lor \neg \left(x \leq 1.3 \cdot 10^{-49}\right) \land x \leq 4.6 \cdot 10^{-12}:\\
\;\;\;\;-z\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 20.12% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -2.65 \cdot 10^{-67} \lor \neg \left(z \leq 2.5 \cdot 10^{-48}\right):\\
\;\;\;\;z \cdot \left(x + -1\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(y + z\right)\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 1.52% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1 \lor \neg \left(x \leq 7.2 \cdot 10^{-9}\right):\\
\;\;\;\;x \cdot \left(y + z\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot y - z\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 1.52% |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1:\\
\;\;\;\;x \cdot z + x \cdot y\\
\mathbf{elif}\;x \leq 7.2 \cdot 10^{-9}:\\
\;\;\;\;x \cdot y - z\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(y + z\right)\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 0.02% |
|---|
| Cost | 576 |
|---|
\[z \cdot \left(x + -1\right) + x \cdot y
\]
| Alternative 8 |
|---|
| Error | 0.02% |
|---|
| Cost | 448 |
|---|
\[x \cdot \left(y + z\right) - z
\]