| Alternative 1 |
|---|
| Error | 39.09% |
|---|
| Cost | 1116 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.9 \cdot 10^{-31}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq -2.3 \cdot 10^{-146}:\\
\;\;\;\;-z\\
\mathbf{elif}\;x \leq -8.8 \cdot 10^{-159}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 2.6 \cdot 10^{-126}:\\
\;\;\;\;-z\\
\mathbf{elif}\;x \leq 2.3 \cdot 10^{-68}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 1.08 \cdot 10^{-29}:\\
\;\;\;\;-z\\
\mathbf{elif}\;x \leq 7.8 \cdot 10^{+152}:\\
\;\;\;\;x \cdot y\\
\mathbf{else}:\\
\;\;\;\;x \cdot z\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 21.76% |
|---|
| Cost | 1112 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(y + z\right)\\
\mathbf{if}\;x \leq -1.6 \cdot 10^{-32}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -3.2 \cdot 10^{-146}:\\
\;\;\;\;-z\\
\mathbf{elif}\;x \leq -8.8 \cdot 10^{-159}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 2.7 \cdot 10^{-127}:\\
\;\;\;\;-z\\
\mathbf{elif}\;x \leq 4.7 \cdot 10^{-70}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 1.08 \cdot 10^{-29}:\\
\;\;\;\;-z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 21.51% |
|---|
| Cost | 1112 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(y + z\right)\\
\mathbf{if}\;x \leq -1:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -2.3 \cdot 10^{-146}:\\
\;\;\;\;z \cdot \left(x + -1\right)\\
\mathbf{elif}\;x \leq -8.8 \cdot 10^{-159}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 2.6 \cdot 10^{-126}:\\
\;\;\;\;-z\\
\mathbf{elif}\;x \leq 3 \cdot 10^{-69}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 1.08 \cdot 10^{-29}:\\
\;\;\;\;-z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 39.42% |
|---|
| Cost | 986 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -5.6 \cdot 10^{-32}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq -2.3 \cdot 10^{-146} \lor \neg \left(x \leq -8.8 \cdot 10^{-159}\right) \land \left(x \leq 2.6 \cdot 10^{-126} \lor \neg \left(x \leq 4.2 \cdot 10^{-69}\right) \land x \leq 7 \cdot 10^{-30}\right):\\
\;\;\;\;-z\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 1.86% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -7.4 \cdot 10^{+16} \lor \neg \left(x \leq 1\right):\\
\;\;\;\;x \cdot \left(y + z\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot y - z\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.02% |
|---|
| Cost | 448 |
|---|
\[x \cdot \left(y + z\right) - z
\]