| Alternative 1 |
|---|
| Error | 24.4 |
|---|
| Cost | 852 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.5 \cdot 10^{+118}:\\
\;\;\;\;z \cdot x\\
\mathbf{elif}\;x \leq -8.3 \cdot 10^{+92}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;x \leq -1 \cdot 10^{+24}:\\
\;\;\;\;z \cdot x\\
\mathbf{elif}\;x \leq -2.45 \cdot 10^{-88}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;x \leq 1:\\
\;\;\;\;-z\\
\mathbf{else}:\\
\;\;\;\;z \cdot x\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 12.7 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := \left(y + z\right) \cdot x\\
\mathbf{if}\;x \leq -1.2 \cdot 10^{-87}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 1.3 \cdot 10^{-10}:\\
\;\;\;\;-z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 12.7 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := \left(y + z\right) \cdot x\\
\mathbf{if}\;x \leq -1.2 \cdot 10^{-87}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 0.00155:\\
\;\;\;\;\left(x - 1\right) \cdot z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 1.4 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := \left(y + z\right) \cdot x\\
\mathbf{if}\;x \leq -7.6 \cdot 10^{+23}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 1:\\
\;\;\;\;y \cdot x - z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 24.5 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.45 \cdot 10^{-87}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;x \leq 3.8 \cdot 10^{-12}:\\
\;\;\;\;-z\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[x \cdot \left(z + y\right) - z
\]