| Alternative 1 |
|---|
| Error | 24.1 |
|---|
| Cost | 1048 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(-z\right)\\
\mathbf{if}\;y \leq -0.00039:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 6.4 \cdot 10^{-114}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq 2 \cdot 10^{-101}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 2.15 \cdot 10^{-29}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq 10^{+15}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 2.25 \cdot 10^{+69}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 12.5 |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(x - z\right)\\
\mathbf{if}\;y \leq -9 \cdot 10^{-15}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 1.15 \cdot 10^{-110}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq 9.5 \cdot 10^{-101}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 1.3 \cdot 10^{-31}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 12.4 |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(x - z\right)\\
\mathbf{if}\;y \leq -2.5 \cdot 10^{-5}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 2.65 \cdot 10^{-111}:\\
\;\;\;\;z \cdot \left(1 - y\right)\\
\mathbf{elif}\;y \leq 2.55 \cdot 10^{-101}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 8.5 \cdot 10^{-30}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 23.5 |
|---|
| Cost | 720 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -7 \cdot 10^{-5}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 1.4 \cdot 10^{-110}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq 2 \cdot 10^{-101}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 2.25 \cdot 10^{-30}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 1.9 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1 \lor \neg \left(y \leq 2.3 \cdot 10^{-29}\right):\\
\;\;\;\;y \cdot \left(x - z\right)\\
\mathbf{else}:\\
\;\;\;\;z + y \cdot x\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[z + y \cdot \left(x - z\right)
\]