| Alternative 1 |
|---|
| Accuracy | 99.2% |
|---|
| Cost | 13640 |
|---|
\[\begin{array}{l}
\mathbf{if}\;e^{z} \leq 0:\\
\;\;\;\;x + \frac{-1}{x}\\
\mathbf{elif}\;e^{z} \leq 1:\\
\;\;\;\;x + \frac{-1}{x + \frac{-1.1283791670955126}{y}}\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 98.5% |
|---|
| Cost | 13636 |
|---|
\[\begin{array}{l}
\mathbf{if}\;e^{z} \leq 0:\\
\;\;\;\;x + \frac{-1}{x}\\
\mathbf{else}:\\
\;\;\;\;x + \frac{y}{e^{z} \cdot 1.1283791670955126 - x \cdot y}\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 70.3% |
|---|
| Cost | 852 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.2 \cdot 10^{-23}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq -1.55 \cdot 10^{-62}:\\
\;\;\;\;\frac{-1}{x}\\
\mathbf{elif}\;x \leq -1.15 \cdot 10^{-225}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq 2.75 \cdot 10^{-190}:\\
\;\;\;\;y \cdot 0.8862269254527579\\
\mathbf{elif}\;x \leq 10^{-25}:\\
\;\;\;\;\frac{-1}{x}\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 85.8% |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -3.7 \cdot 10^{-58}:\\
\;\;\;\;x + \frac{-1}{x}\\
\mathbf{elif}\;z \leq 2.9 \cdot 10^{-111}:\\
\;\;\;\;x + \frac{y}{1.1283791670955126}\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 85.7% |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -5.3 \cdot 10^{-58}:\\
\;\;\;\;x + \frac{-1}{x}\\
\mathbf{elif}\;z \leq 6 \cdot 10^{-114}:\\
\;\;\;\;x + y \cdot 0.8862269254527579\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 69.7% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.26 \cdot 10^{-225}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq 1.22 \cdot 10^{-176}:\\
\;\;\;\;y \cdot 0.8862269254527579\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]
| Alternative 7 |
|---|
| Accuracy | 81.3% |
|---|
| Cost | 452 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq 3.1 \cdot 10^{-270}:\\
\;\;\;\;x + \frac{-1}{x}\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]