| Alternative 1 |
|---|
| Error | 37.57% |
|---|
| Cost | 784 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(-z\right)\\
\mathbf{if}\;z \leq -1.9 \cdot 10^{+86}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq -1:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 6.4 \cdot 10^{-27}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq 2.15 \cdot 10^{+105}:\\
\;\;\;\;y \cdot z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 19.21% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -72000000 \lor \neg \left(z \leq 50\right):\\
\;\;\;\;\left(y - x\right) \cdot z\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(1 - z\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 1.52% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1 \lor \neg \left(z \leq 0.0125\right):\\
\;\;\;\;\left(y - x\right) \cdot z\\
\mathbf{else}:\\
\;\;\;\;x + y \cdot z\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 27.23% |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.55 \cdot 10^{+83}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 3.5 \cdot 10^{+64}:\\
\;\;\;\;x \cdot \left(1 - z\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.02% |
|---|
| Cost | 576 |
|---|
\[x + \left(y \cdot z - x \cdot z\right)
\]
| Alternative 6 |
|---|
| Error | 36.78% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1.02 \cdot 10^{-8}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 2.2 \cdot 10^{-28}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 0.02% |
|---|
| Cost | 448 |
|---|
\[x + \left(y - x\right) \cdot z
\]