| Alternative 1 |
|---|
| Accuracy | 27.2% |
|---|
| Cost | 1181 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(-z\right)\\
\mathbf{if}\;y \leq 2.7 \cdot 10^{+60}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 1.9 \cdot 10^{-86}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 2.8 \cdot 10^{-36}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq 7800000000000:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 1.52 \cdot 10^{+63} \lor \neg \left(y \leq 4.1 \cdot 10^{+80}\right) \land y \leq 5.6 \cdot 10^{+119}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 65.5% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq 6 \cdot 10^{-82} \lor \neg \left(y \leq 4.5 \cdot 10^{-35}\right):\\
\;\;\;\;y \cdot \left(x - z\right)\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 65.7% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq 9.5 \cdot 10^{-89} \lor \neg \left(y \leq 8.5 \cdot 10^{-35}\right):\\
\;\;\;\;y \cdot \left(x - z\right)\\
\mathbf{else}:\\
\;\;\;\;z \cdot \left(1 - y\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 64.7% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq 260000000 \lor \neg \left(y \leq 2.65 \cdot 10^{-8}\right):\\
\;\;\;\;y \cdot \left(x - z\right)\\
\mathbf{else}:\\
\;\;\;\;z + y \cdot x\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 42.7% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq 1.8 \cdot 10^{-87}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 1.12 \cdot 10^{-38}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[z + y \cdot \left(x - z\right)
\]