| Alternative 1 |
|---|
| Accuracy | 75.8% |
|---|
| Cost | 7515 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -2.01 \cdot 10^{+152} \lor \neg \left(y \leq -5.7 \cdot 10^{+60} \lor \neg \left(y \leq -1.3 \cdot 10^{+24}\right) \land \left(y \leq 2.2 \cdot 10^{+42} \lor \neg \left(y \leq 3 \cdot 10^{+73}\right) \land y \leq 1.3 \cdot 10^{+111}\right)\right):\\
\;\;\;\;y \cdot \left(1 + \log z\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot 0.5 - z \cdot y\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 76.2% |
|---|
| Cost | 7513 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(1 + \log z\right)\\
t_1 := x \cdot 0.5 - z \cdot y\\
\mathbf{if}\;y \leq -2.01 \cdot 10^{+152}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -3.35 \cdot 10^{+59}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq -2.95 \cdot 10^{+24}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 2.1 \cdot 10^{+42}:\\
\;\;\;\;\mathsf{fma}\left(-z, y, x \cdot 0.5\right)\\
\mathbf{elif}\;y \leq 1.35 \cdot 10^{+69} \lor \neg \left(y \leq 3.6 \cdot 10^{+115}\right):\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;t_1\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 82.5% |
|---|
| Cost | 7377 |
|---|
\[\begin{array}{l}
t_0 := \left(\left(1 - z\right) + \log z\right) \cdot y\\
\mathbf{if}\;y \leq -2.01 \cdot 10^{+152}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -8 \cdot 10^{+61}:\\
\;\;\;\;x \cdot 0.5 - z \cdot y\\
\mathbf{elif}\;y \leq -2500000000 \lor \neg \left(y \leq 4.2 \cdot 10^{+37}\right):\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(-z, y, x \cdot 0.5\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 98.8% |
|---|
| Cost | 7108 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq 0.28:\\
\;\;\;\;x \cdot 0.5 + y \cdot \left(1 + \log z\right)\\
\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(-z, y, x \cdot 0.5\right)\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 99.9% |
|---|
| Cost | 7104 |
|---|
\[x \cdot 0.5 + \left(\left(1 - z\right) + \log z\right) \cdot y
\]
| Alternative 6 |
|---|
| Accuracy | 55.7% |
|---|
| Cost | 452 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq 82000:\\
\;\;\;\;x \cdot 0.5\\
\mathbf{else}:\\
\;\;\;\;y - z \cdot y\\
\end{array}
\]
| Alternative 7 |
|---|
| Accuracy | 72.3% |
|---|
| Cost | 448 |
|---|
\[x \cdot 0.5 - z \cdot y
\]
| Alternative 8 |
|---|
| Accuracy | 55.7% |
|---|
| Cost | 388 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq 82000:\\
\;\;\;\;x \cdot 0.5\\
\mathbf{else}:\\
\;\;\;\;z \cdot \left(-y\right)\\
\end{array}
\]