| Alternative 1 |
|---|
| Error | 38.02% |
|---|
| Cost | 1181 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(-z\right)\\
\mathbf{if}\;x \leq -7.5 \cdot 10^{+174}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -1.3 \cdot 10^{-32}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 2.6 \cdot 10^{-126}:\\
\;\;\;\;z\\
\mathbf{elif}\;x \leq 1.1 \cdot 10^{-69}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 5.6 \cdot 10^{-30}:\\
\;\;\;\;z\\
\mathbf{elif}\;x \leq 3.5 \cdot 10^{+121} \lor \neg \left(x \leq 1.45 \cdot 10^{+227}\right):\\
\;\;\;\;x \cdot y\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 21.26% |
|---|
| Cost | 1114 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(y - z\right)\\
\mathbf{if}\;x \leq -1.3 \cdot 10^{+18}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -6.8 \cdot 10^{-18}:\\
\;\;\;\;z \cdot \left(1 - x\right)\\
\mathbf{elif}\;x \leq -2.1 \cdot 10^{-38} \lor \neg \left(x \leq 2.6 \cdot 10^{-126}\right) \land \left(x \leq 1.75 \cdot 10^{-70} \lor \neg \left(x \leq 1.05 \cdot 10^{-29}\right)\right):\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 20.76% |
|---|
| Cost | 850 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.1 \cdot 10^{-33} \lor \neg \left(x \leq 2.6 \cdot 10^{-126}\right) \land \left(x \leq 3.6 \cdot 10^{-69} \lor \neg \left(x \leq 9 \cdot 10^{-30}\right)\right):\\
\;\;\;\;x \cdot \left(y - z\right)\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 38.69% |
|---|
| Cost | 721 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.4 \cdot 10^{-31}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 2.6 \cdot 10^{-126}:\\
\;\;\;\;z\\
\mathbf{elif}\;\neg \left(x \leq 7.5 \cdot 10^{-71}\right) \land x \leq 8.2 \cdot 10^{-30}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 1.39% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1 \lor \neg \left(x \leq 1\right):\\
\;\;\;\;x \cdot \left(y - z\right)\\
\mathbf{else}:\\
\;\;\;\;z + x \cdot y\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.03% |
|---|
| Cost | 576 |
|---|
\[z \cdot \left(1 - x\right) + x \cdot y
\]
| Alternative 7 |
|---|
| Error | 0.03% |
|---|
| Cost | 448 |
|---|
\[z + x \cdot \left(y - z\right)
\]