| Alternative 1 |
|---|
| Error | 26.44% |
|---|
| Cost | 1115 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.05 \cdot 10^{-127} \lor \neg \left(y \leq 2 \cdot 10^{-224} \lor \neg \left(y \leq 5 \cdot 10^{-193}\right) \land \left(y \leq 2.5 \cdot 10^{-144} \lor \neg \left(y \leq 3.5 \cdot 10^{-118}\right) \land y \leq 2 \cdot 10^{-38}\right)\right):\\
\;\;\;\;y \cdot \left(1 - x\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot z\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 36.68% |
|---|
| Cost | 652 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(-x\right)\\
\mathbf{if}\;x \leq -1:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 4.8 \cdot 10^{-12}:\\
\;\;\;\;y\\
\mathbf{elif}\;x \leq 4.1 \cdot 10^{+40}:\\
\;\;\;\;x \cdot z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 20.91% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.45 \cdot 10^{-127} \lor \neg \left(y \leq 1.95 \cdot 10^{-38}\right):\\
\;\;\;\;y \cdot \left(1 - x\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(z - y\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 1.4% |
|---|
| 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 5 |
|---|
| Error | 38.99% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -2.1 \cdot 10^{-128}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 2.05 \cdot 10^{-38}:\\
\;\;\;\;x \cdot z\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.02% |
|---|
| Cost | 448 |
|---|
\[y + x \cdot \left(z - y\right)
\]