| Alternative 1 |
|---|
| Accuracy | 59.0% |
|---|
| Cost | 1444 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(-z\right)\\
\mathbf{if}\;y \leq -2.4 \cdot 10^{+274}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -3.6 \cdot 10^{+235}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq -2.9 \cdot 10^{+146}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -1.5 \cdot 10^{+73}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq -7.8 \cdot 10^{+43}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -1.4 \cdot 10^{-52}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 7.8 \cdot 10^{-140}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq 1.02 \cdot 10^{-83}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 1.3 \cdot 10^{-17}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 82.9% |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(x - z\right)\\
\mathbf{if}\;y \leq -4 \cdot 10^{-65}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 2 \cdot 10^{-139}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq 4.9 \cdot 10^{-85}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 3 \cdot 10^{-18}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 59.8% |
|---|
| Cost | 720 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.6 \cdot 10^{-55}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 2.35 \cdot 10^{-139}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq 8.5 \cdot 10^{-86}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 1.8 \cdot 10^{-18}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 98.3% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -440000000 \lor \neg \left(y \leq 1.3 \cdot 10^{-17}\right):\\
\;\;\;\;y \cdot \left(x - z\right)\\
\mathbf{else}:\\
\;\;\;\;z + y \cdot x\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[z + y \cdot \left(x - z\right)
\]