| Alternative 1 |
|---|
| Error | 25.5 |
|---|
| Cost | 916 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(-y\right)\\
\mathbf{if}\;x \leq -2.5 \cdot 10^{+102}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;x \leq -76.55260091418698:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -4.0873565926724834 \cdot 10^{-125}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;x \leq 1.7961782705043693 \cdot 10^{-89}:\\
\;\;\;\;y\\
\mathbf{elif}\;x \leq 7.169444529973968 \cdot 10^{+19}:\\
\;\;\;\;x \cdot z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 12.0 |
|---|
| Cost | 716 |
|---|
\[\begin{array}{l}
t_0 := y + x \cdot z\\
t_1 := x \cdot \left(-y\right)\\
\mathbf{if}\;x \leq -9.5 \cdot 10^{+96}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -76.55260091418698:\\
\;\;\;\;t_1\\
\mathbf{elif}\;x \leq 7.169444529973968 \cdot 10^{+19}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;t_1\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 9.0 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := y - x \cdot y\\
\mathbf{if}\;y \leq -594893.0191040874:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 5.0943697288809915 \cdot 10^{+101}:\\
\;\;\;\;y + x \cdot z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 1.5 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(z - y\right)\\
\mathbf{if}\;x \leq -76.55260091418698:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 4.801897650124731 \cdot 10^{-28}:\\
\;\;\;\;y + x \cdot z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 1.5 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -76.55260091418698:\\
\;\;\;\;x \cdot z - x \cdot y\\
\mathbf{elif}\;x \leq 4.801897650124731 \cdot 10^{-28}:\\
\;\;\;\;y + x \cdot z\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(z - y\right)\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 25.6 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4.0873565926724834 \cdot 10^{-125}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;x \leq 1.7961782705043693 \cdot 10^{-89}:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;x \cdot z\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[y + x \cdot \left(z - y\right)
\]