| Alternative 1 |
|---|
| Accuracy | 71.7% |
|---|
| Cost | 7576 |
|---|
\[\begin{array}{l}
t_0 := x \cdot 0.5 - z \cdot y\\
t_1 := y \cdot \left(1 + \log z\right)\\
\mathbf{if}\;z \leq 1.9 \cdot 10^{-242}:\\
\;\;\;\;x \cdot 0.5\\
\mathbf{elif}\;z \leq 1.75 \cdot 10^{-167}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;z \leq 9.6 \cdot 10^{-134}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 7.2 \cdot 10^{-85}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;z \leq 1.25 \cdot 10^{-70}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 1.7 \cdot 10^{-18}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(-z, y, x \cdot 0.5\right)\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 71.6% |
|---|
| Cost | 7514 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq 2.7 \cdot 10^{-242}:\\
\;\;\;\;x \cdot 0.5\\
\mathbf{elif}\;z \leq 1.7 \cdot 10^{-167} \lor \neg \left(z \leq 1.72 \cdot 10^{-133}\right) \land \left(z \leq 4.6 \cdot 10^{-85} \lor \neg \left(z \leq 4.5 \cdot 10^{-71}\right) \land z \leq 5.3 \cdot 10^{-18}\right):\\
\;\;\;\;y \cdot \left(1 + \log z\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot 0.5 - z \cdot y\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 83.4% |
|---|
| Cost | 7368 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \cdot 0.5 \leq -4 \cdot 10^{-37}:\\
\;\;\;\;x \cdot 0.5 - z \cdot y\\
\mathbf{elif}\;x \cdot 0.5 \leq 0.0002:\\
\;\;\;\;y \cdot \left(1 + \left(\log z - z\right)\right)\\
\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(-z, y, x \cdot 0.5\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 98.6% |
|---|
| 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.0% |
|---|
| Cost | 520 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.8 \cdot 10^{+24}:\\
\;\;\;\;x \cdot 0.5\\
\mathbf{elif}\;x \leq 33000:\\
\;\;\;\;-z \cdot y\\
\mathbf{else}:\\
\;\;\;\;x \cdot 0.5\\
\end{array}
\]
| Alternative 7 |
|---|
| Accuracy | 71.4% |
|---|
| Cost | 448 |
|---|
\[x \cdot 0.5 - z \cdot y
\]