| Alternative 1 |
|---|
| Error | 25.2 |
|---|
| Cost | 1444 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(-x\right)\\
\mathbf{if}\;x \leq -1.08 \cdot 10^{+85}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -2.1 \cdot 10^{-30}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;x \leq -2.1 \cdot 10^{-63}:\\
\;\;\;\;y\\
\mathbf{elif}\;x \leq -1.75 \cdot 10^{-140}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;x \leq 1.28 \cdot 10^{-101}:\\
\;\;\;\;y\\
\mathbf{elif}\;x \leq 2.8 \cdot 10^{-70}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;x \leq 1.85 \cdot 10^{-38}:\\
\;\;\;\;y\\
\mathbf{elif}\;x \leq 3 \cdot 10^{+51}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;x \leq 1.3 \cdot 10^{+82}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;x \cdot z\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 13.6 |
|---|
| Cost | 1112 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(z - y\right)\\
\mathbf{if}\;x \leq -1.8 \cdot 10^{-30}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -1.35 \cdot 10^{-61}:\\
\;\;\;\;y\\
\mathbf{elif}\;x \leq -5.2 \cdot 10^{-141}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 1.15 \cdot 10^{-101}:\\
\;\;\;\;y\\
\mathbf{elif}\;x \leq 9 \cdot 10^{-70}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;x \leq 3.3 \cdot 10^{-38}:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 25.1 |
|---|
| Cost | 984 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.8 \cdot 10^{-30}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;x \leq -1.9 \cdot 10^{-62}:\\
\;\;\;\;y\\
\mathbf{elif}\;x \leq -1.75 \cdot 10^{-140}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;x \leq 1.28 \cdot 10^{-101}:\\
\;\;\;\;y\\
\mathbf{elif}\;x \leq 3.6 \cdot 10^{-70}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;x \leq 1.75 \cdot 10^{-38}:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;x \cdot z\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 1.1 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -23000000000000 \lor \neg \left(x \leq 1\right):\\
\;\;\;\;x \cdot \left(z - y\right)\\
\mathbf{else}:\\
\;\;\;\;y + x \cdot z\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[y + x \cdot \left(z - y\right)
\]