| Alternative 1 |
|---|
| Error | 37.06% |
|---|
| Cost | 720 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -0.00075:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 1.9 \cdot 10^{-13}:\\
\;\;\;\;-z\\
\mathbf{elif}\;x \leq 3.65 \cdot 10^{+99}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 2.7 \cdot 10^{+206}:\\
\;\;\;\;x \cdot z\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 1.32% |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1:\\
\;\;\;\;x \cdot \left(y + z\right)\\
\mathbf{elif}\;x \leq 0.0003:\\
\;\;\;\;x \cdot y - z\\
\mathbf{else}:\\
\;\;\;\;x \cdot y + x \cdot z\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 19.2% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -0.00075 \lor \neg \left(x \leq 7.5 \cdot 10^{-17}\right):\\
\;\;\;\;x \cdot \left(y + z\right)\\
\mathbf{else}:\\
\;\;\;\;-z\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 21.32% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1.15 \cdot 10^{-140} \lor \neg \left(z \leq 7.2 \cdot 10^{-90}\right):\\
\;\;\;\;z \cdot \left(x + -1\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(y + z\right)\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 1.32% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1 \lor \neg \left(x \leq 0.0003\right):\\
\;\;\;\;x \cdot \left(y + z\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot y - z\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 21.43% |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -6.2 \cdot 10^{-143}:\\
\;\;\;\;x \cdot z - z\\
\mathbf{elif}\;z \leq 1.36 \cdot 10^{-89}:\\
\;\;\;\;x \cdot \left(y + z\right)\\
\mathbf{else}:\\
\;\;\;\;z \cdot \left(x + -1\right)\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 0.03% |
|---|
| Cost | 576 |
|---|
\[x \cdot y + z \cdot \left(x + -1\right)
\]
| Alternative 8 |
|---|
| Error | 37.46% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -0.00075:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 1.42 \cdot 10^{-12}:\\
\;\;\;\;-z\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]
| Alternative 9 |
|---|
| Error | 0.02% |
|---|
| Cost | 448 |
|---|
\[x \cdot \left(y + z\right) - z
\]