| Alternative 1 |
|---|
| Accuracy | 60.8% |
|---|
| Cost | 1048 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(-z\right)\\
\mathbf{if}\;z \leq -1.5 \cdot 10^{+93}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq -4 \cdot 10^{+53}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq -1.36 \cdot 10^{-104}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 1.5 \cdot 10^{-29}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq 8.2 \cdot 10^{+23}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 4.2 \cdot 10^{+199}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 83.6% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1.36 \cdot 10^{-104} \lor \neg \left(z \leq 1.05 \cdot 10^{-30}\right):\\
\;\;\;\;\left(y - x\right) \cdot z\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(1 - z\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 98.3% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1 \lor \neg \left(z \leq 7.5 \cdot 10^{-20}\right):\\
\;\;\;\;\left(y - x\right) \cdot z\\
\mathbf{else}:\\
\;\;\;\;x + y \cdot z\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 74.2% |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -7.8 \cdot 10^{+14}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 1.1 \cdot 10^{+22}:\\
\;\;\;\;x \cdot \left(1 - z\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 60.5% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1.35 \cdot 10^{-104}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 2.5 \cdot 10^{-31}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[x + \left(y - x\right) \cdot z
\]