| Alternative 1 |
|---|
| Accuracy | 71.7% |
|---|
| Cost | 33362 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \sqrt{z}\\
\mathbf{if}\;t_0 \leq -5 \cdot 10^{-6} \lor \neg \left(t_0 \leq 10^{-117}\right) \land \left(t_0 \leq 10^{-45} \lor \neg \left(t_0 \leq 10^{+47}\right)\right):\\
\;\;\;\;0.5 \cdot t_0\\
\mathbf{else}:\\
\;\;\;\;0.5 \cdot x\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 71.7% |
|---|
| Cost | 33361 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \sqrt{z}\\
\mathbf{if}\;t_0 \leq -5 \cdot 10^{-6}:\\
\;\;\;\;0.5 \cdot \frac{y}{{z}^{-0.5}}\\
\mathbf{elif}\;t_0 \leq 10^{-117} \lor \neg \left(t_0 \leq 10^{-45}\right) \land t_0 \leq 10^{+47}:\\
\;\;\;\;0.5 \cdot x\\
\mathbf{else}:\\
\;\;\;\;0.5 \cdot t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 99.8% |
|---|
| Cost | 6848 |
|---|
\[0.5 \cdot \left(x + y \cdot \sqrt{z}\right)
\]