| Alternative 1 |
|---|
| Error | 24.2 |
|---|
| Cost | 1312 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(-z\right)\\
\mathbf{if}\;y \leq -7.8 \cdot 10^{+235}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq -2.8 \cdot 10^{+114}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -0.00115:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 7.5 \cdot 10^{-108}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq 3 \cdot 10^{-53}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 2.8 \cdot 10^{-19}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq 2.5 \cdot 10^{+89}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 2.2 \cdot 10^{+177}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 13.1 |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(x - z\right)\\
\mathbf{if}\;y \leq -0.00115:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 3.1 \cdot 10^{-108}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq 2.7 \cdot 10^{-53}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 1.9 \cdot 10^{-23}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 13.0 |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(x - z\right)\\
t_1 := z \cdot \left(1 - y\right)\\
\mathbf{if}\;y \leq -0.0012:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 1.32 \cdot 10^{-108}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq 2 \cdot 10^{-54}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 112000000000:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 24.2 |
|---|
| Cost | 720 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -0.00115:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 7.5 \cdot 10^{-108}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq 3.3 \cdot 10^{-54}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 9 \cdot 10^{-25}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 1.0 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1100000000 \lor \neg \left(y \leq 1\right):\\
\;\;\;\;y \cdot \left(x - z\right)\\
\mathbf{else}:\\
\;\;\;\;z + y \cdot x\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.0 |
|---|
| Cost | 576 |
|---|
\[z \cdot \left(1 - y\right) + y \cdot x
\]
| Alternative 7 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[z + y \cdot \left(x - z\right)
\]