| Alternative 1 |
|---|
| Error | 24.7 |
|---|
| Cost | 1048 |
|---|
\[\begin{array}{l}
t_0 := -y \cdot z\\
\mathbf{if}\;y \leq -3 \cdot 10^{+19}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -1.25 \cdot 10^{-18}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 1.05 \cdot 10^{-126}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq 2.05 \cdot 10^{-41}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 3.9 \cdot 10^{-10}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq 2.3 \cdot 10^{+112}:\\
\;\;\;\;y \cdot x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 13.6 |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(x - z\right)\\
\mathbf{if}\;y \leq -2.1 \cdot 10^{-63}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 10^{-126}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq 1.3 \cdot 10^{-39}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 7.5 \cdot 10^{-11}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 12.8 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := \left(1 - y\right) \cdot z\\
\mathbf{if}\;z \leq -1.9 \cdot 10^{-15}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 2.95 \cdot 10^{-61}:\\
\;\;\;\;y \cdot \left(x - z\right)\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.8 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(x - z\right)\\
\mathbf{if}\;y \leq -1:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 1:\\
\;\;\;\;z + y \cdot x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.0 |
|---|
| Cost | 576 |
|---|
\[z + y \cdot \left(-1 \cdot z + x\right)
\]
| Alternative 6 |
|---|
| Error | 24.5 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1.4 \cdot 10^{-15}:\\
\;\;\;\;z\\
\mathbf{elif}\;z \leq 3 \cdot 10^{-61}:\\
\;\;\;\;y \cdot x\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]