| Alternative 1 |
|---|
| Error | 16.0 |
|---|
| Cost | 850 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1.8 \cdot 10^{-78} \lor \neg \left(z \leq 5.1 \cdot 10^{-147}\right) \land \left(z \leq 6.8 \cdot 10^{-96} \lor \neg \left(z \leq 6.2 \cdot 10^{-62}\right)\right):\\
\;\;\;\;z \cdot \left(5 + x\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 13.3 |
|---|
| Cost | 850 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -2.35 \cdot 10^{-38} \lor \neg \left(z \leq 9.5 \cdot 10^{-147}\right) \land \left(z \leq 1.45 \cdot 10^{-124} \lor \neg \left(z \leq 8.6 \cdot 10^{-7}\right)\right):\\
\;\;\;\;z \cdot \left(5 + x\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(z + y\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 24.8 |
|---|
| Cost | 721 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -2.5 \cdot 10^{-41}:\\
\;\;\;\;z \cdot 5\\
\mathbf{elif}\;z \leq 2.5 \cdot 10^{-145} \lor \neg \left(z \leq 2.1 \cdot 10^{-98}\right) \land z \leq 8 \cdot 10^{-42}:\\
\;\;\;\;x \cdot y\\
\mathbf{else}:\\
\;\;\;\;z \cdot 5\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.9 |
|---|
| Cost | 713 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -5 \lor \neg \left(x \leq 5\right):\\
\;\;\;\;x \cdot \left(z + y\right)\\
\mathbf{else}:\\
\;\;\;\;z \cdot 5 + x \cdot y\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.9 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -5:\\
\;\;\;\;x \cdot \left(z + y\right)\\
\mathbf{elif}\;x \leq 5:\\
\;\;\;\;z \cdot 5 + x \cdot y\\
\mathbf{else}:\\
\;\;\;\;x \cdot y + z \cdot x\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 24.7 |
|---|
| Cost | 588 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.02 \cdot 10^{+68}:\\
\;\;\;\;z \cdot x\\
\mathbf{elif}\;x \leq -6.5 \cdot 10^{-55}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 2.25 \cdot 10^{-101}:\\
\;\;\;\;z \cdot 5\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 0.1 |
|---|
| Cost | 576 |
|---|
\[z \cdot 5 + x \cdot \left(z + y\right)
\]
| Alternative 8 |
|---|
| Error | 0.1 |
|---|
| Cost | 576 |
|---|
\[x \cdot y + z \cdot \left(5 + x\right)
\]