| Alternative 1 |
|---|
| Error | 25.2 |
|---|
| Cost | 917 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -0.55:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 4.5 \cdot 10^{-119}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq 1.35 \cdot 10^{+109} \lor \neg \left(z \leq 3.8 \cdot 10^{+243}\right) \land z \leq 3.8 \cdot 10^{+272}:\\
\;\;\;\;y \cdot z\\
\mathbf{else}:\\
\;\;\;\;z \cdot \left(-x\right)\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 14.3 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -4.1 \cdot 10^{-79} \lor \neg \left(z \leq 4.5 \cdot 10^{-119}\right):\\
\;\;\;\;\left(y - x\right) \cdot z\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 1.0 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -215000000 \lor \neg \left(z \leq 1\right):\\
\;\;\;\;\left(y - x\right) \cdot z\\
\mathbf{else}:\\
\;\;\;\;x + y \cdot z\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 25.0 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -6.5 \cdot 10^{-92}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq 2.6 \cdot 10^{-51}:\\
\;\;\;\;y \cdot z\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[x + \left(y - x\right) \cdot z
\]