| Alternative 1 |
|---|
| Error | 24.9 |
|---|
| Cost | 916 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \left(-y\right)\\
\mathbf{if}\;y \leq -1:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 5 \cdot 10^{-158}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq 9.2 \cdot 10^{-133}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 5.5 \cdot 10^{-11}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq 5.2 \cdot 10^{+157}:\\
\;\;\;\;y \cdot x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 13.1 |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(x - z\right)\\
\mathbf{if}\;y \leq -2.8 \cdot 10^{-10}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 5 \cdot 10^{-158}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq 9.2 \cdot 10^{-133}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 9.2 \cdot 10^{-11}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 13.2 |
|---|
| 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 -240000000:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 3.6 \cdot 10^{-158}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq 9.2 \cdot 10^{-133}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 1.5 \cdot 10^{-11}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 24.3 |
|---|
| Cost | 720 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -3.1 \cdot 10^{-10}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 5 \cdot 10^{-158}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq 9.2 \cdot 10^{-133}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 5.3 \cdot 10^{-12}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.7 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1 \lor \neg \left(y \leq 0.0076\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)
\]