| Alternative 1 |
|---|
| Error | 7.6 |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := x + y \cdot z\\
t_1 := x \cdot \left(1 - y\right)\\
\mathbf{if}\;z \leq -3.3592749841645476 \cdot 10^{-28}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq -9.855772828028339 \cdot 10^{-82}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;z \leq -2.502741836063844 \cdot 10^{-138}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 1.0343945609214596 \cdot 10^{-132}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 24.6 |
|---|
| Cost | 652 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(-y\right)\\
\mathbf{if}\;y \leq -138842662116.10696:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 6.201687979891976 \cdot 10^{-82}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 5.137485141644613 \cdot 10^{+21}:\\
\;\;\;\;y \cdot z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 11.5 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(-y\right)\\
\mathbf{if}\;y \leq -4.3 \cdot 10^{+32}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 5.137485141644613 \cdot 10^{+21}:\\
\;\;\;\;x + y \cdot z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.9 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(z - x\right)\\
\mathbf{if}\;y \leq -138842662116.10696:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 0.004803542289403861:\\
\;\;\;\;x + y \cdot z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 25.1 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.6283931163812133 \cdot 10^{-17}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq 2.1466825154183923 \cdot 10^{-117}:\\
\;\;\;\;y \cdot z\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[x + y \cdot \left(z - x\right)
\]