| Alternative 1 |
|---|
| Accuracy | 60.7% |
|---|
| Cost | 1180 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(-x\right)\\
\mathbf{if}\;x \leq -3.6 \cdot 10^{+207}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -2.9 \cdot 10^{+152}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;x \leq -1.15 \cdot 10^{+114}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -1.75 \cdot 10^{-67}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;x \leq -3.4 \cdot 10^{-240}:\\
\;\;\;\;y\\
\mathbf{elif}\;x \leq -2.8 \cdot 10^{-246}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;x \leq 1:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 75.5% |
|---|
| Cost | 850 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -2.25 \cdot 10^{-108} \lor \neg \left(y \leq 7.5 \cdot 10^{-128} \lor \neg \left(y \leq 3.6 \cdot 10^{-91}\right) \land y \leq 5.8 \cdot 10^{-69}\right):\\
\;\;\;\;y \cdot \left(1 - x\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot z\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 79.2% |
|---|
| Cost | 850 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.25 \cdot 10^{-28} \lor \neg \left(y \leq 1.15 \cdot 10^{-128} \lor \neg \left(y \leq 1.05 \cdot 10^{-105}\right) \land y \leq 1.65 \cdot 10^{+21}\right):\\
\;\;\;\;y \cdot \left(1 - x\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(z - y\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 60.9% |
|---|
| Cost | 720 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -3.9 \cdot 10^{-28}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 1.8 \cdot 10^{-121}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;y \leq 1.45 \cdot 10^{-105}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 1.45 \cdot 10^{+21}:\\
\;\;\;\;x \cdot z\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 98.5% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1 \lor \neg \left(x \leq 1\right):\\
\;\;\;\;x \cdot \left(z - y\right)\\
\mathbf{else}:\\
\;\;\;\;y + x \cdot z\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 576 |
|---|
\[x \cdot z + y \cdot \left(1 - x\right)
\]
| Alternative 7 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[y + x \cdot \left(z - y\right)
\]