| Alternative 1 |
|---|
| Error | 10.9 |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := \left(1 + x\right) \cdot y\\
\mathbf{if}\;y \leq -4.8 \cdot 10^{-31}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 1.1 \cdot 10^{-103}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 1.8 \cdot 10^{-49}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 1.12 \cdot 10^{-6}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 10.6 |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := \left(1 + x\right) \cdot y\\
t_1 := \left(1 + y\right) \cdot x\\
\mathbf{if}\;y \leq -250000000:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 5 \cdot 10^{-104}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq 1.45 \cdot 10^{-49}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 4500:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 10.6 |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := \left(1 + x\right) \cdot y\\
\mathbf{if}\;y \leq -250000000:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 1.7 \cdot 10^{-105}:\\
\;\;\;\;\left(1 + y\right) \cdot x\\
\mathbf{elif}\;y \leq 4.3 \cdot 10^{-47}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 4500:\\
\;\;\;\;y \cdot x + x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 19.6 |
|---|
| Cost | 592 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -4.2 \cdot 10^{-30}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 4.5 \cdot 10^{-103}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 1.1 \cdot 10^{-46}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 4500:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 18.3 |
|---|
| Cost | 592 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4.1 \cdot 10^{+78}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq -5 \cdot 10^{+15}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;x \leq -3.2 \cdot 10^{-35}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq 1.56 \cdot 10^{-24}:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[\left(x \cdot y + x\right) + y
\]