| Alternative 1 |
|---|
| Error | 23.8 |
|---|
| Cost | 852 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.8 \cdot 10^{+96}:\\
\;\;\;\;z \cdot \left(-x\right)\\
\mathbf{elif}\;x \leq -5.867747587884991 \cdot 10^{-19}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;x \leq -9.717088850848691 \cdot 10^{-141}:\\
\;\;\;\;z\\
\mathbf{elif}\;x \leq -3.4354230429647517 \cdot 10^{-169}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;x \leq 7.437725542128105 \cdot 10^{-10}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 23.7 |
|---|
| Cost | 720 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -5.867747587884991 \cdot 10^{-19}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;x \leq -9.717088850848691 \cdot 10^{-141}:\\
\;\;\;\;z\\
\mathbf{elif}\;x \leq -3.4354230429647517 \cdot 10^{-169}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;x \leq 7.437725542128105 \cdot 10^{-10}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 16.0 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := z - x \cdot z\\
\mathbf{if}\;z \leq -5.490572295503233 \cdot 10^{-143}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 8.61607622494549 \cdot 10^{-162}:\\
\;\;\;\;y \cdot x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 7.8 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := z + y \cdot x\\
\mathbf{if}\;y \leq -594893.0191040874:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 4.357020120295335 \cdot 10^{-156}:\\
\;\;\;\;z - x \cdot z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 1.0 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(y - z\right)\\
\mathbf{if}\;x \leq -76.55260091418698:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 7.437725542128105 \cdot 10^{-10}:\\
\;\;\;\;z + y \cdot x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 1.0 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -76.55260091418698:\\
\;\;\;\;y \cdot x - x \cdot z\\
\mathbf{elif}\;x \leq 7.437725542128105 \cdot 10^{-10}:\\
\;\;\;\;z + y \cdot x\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(y - z\right)\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 0.0 |
|---|
| Cost | 576 |
|---|
\[\left(z - x \cdot z\right) + y \cdot x
\]
| Alternative 8 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[z + x \cdot \left(y - z\right)
\]