\[\left(-x \cdot \frac{1}{\tan B}\right) + \frac{F}{\sin B} \cdot {\left(\left(F \cdot F + 2\right) + 2 \cdot x\right)}^{\left(-\frac{1}{2}\right)}
\]
↓
\[\begin{array}{l}
t_0 := \frac{x}{\tan B}\\
\mathbf{if}\;F \leq -2.55 \cdot 10^{+187}:\\
\;\;\;\;\left(-F\right) \cdot \left(e^{\log \left(\frac{-1}{F}\right)} \cdot \frac{-1}{\sin B}\right) - t_0\\
\mathbf{elif}\;F \leq 1.35 \cdot 10^{+154}:\\
\;\;\;\;\frac{F \cdot {\left(\mathsf{fma}\left(F, F, 2\right)\right)}^{-0.5}}{\sin B} - t_0\\
\mathbf{else}:\\
\;\;\;\;\frac{e^{\log \left(\frac{1}{F}\right)} \cdot F}{\sin B} - t_0\\
\end{array}
\]
(FPCore (F B x)
:precision binary64
(+
(- (* x (/ 1.0 (tan B))))
(* (/ F (sin B)) (pow (+ (+ (* F F) 2.0) (* 2.0 x)) (- (/ 1.0 2.0))))))
↓
(FPCore (F B x)
:precision binary64
(let* ((t_0 (/ x (tan B))))
(if (<= F -2.55e+187)
(- (* (- F) (* (exp (log (/ -1.0 F))) (/ -1.0 (sin B)))) t_0)
(if (<= F 1.35e+154)
(- (/ (* F (pow (fma F F 2.0) -0.5)) (sin B)) t_0)
(- (/ (* (exp (log (/ 1.0 F))) F) (sin B)) t_0)))))double code(double F, double B, double x) {
return -(x * (1.0 / tan(B))) + ((F / sin(B)) * pow((((F * F) + 2.0) + (2.0 * x)), -(1.0 / 2.0)));
}
↓
double code(double F, double B, double x) {
double t_0 = x / tan(B);
double tmp;
if (F <= -2.55e+187) {
tmp = (-F * (exp(log((-1.0 / F))) * (-1.0 / sin(B)))) - t_0;
} else if (F <= 1.35e+154) {
tmp = ((F * pow(fma(F, F, 2.0), -0.5)) / sin(B)) - t_0;
} else {
tmp = ((exp(log((1.0 / F))) * F) / sin(B)) - t_0;
}
return tmp;
}
function code(F, B, x)
return Float64(Float64(-Float64(x * Float64(1.0 / tan(B)))) + Float64(Float64(F / sin(B)) * (Float64(Float64(Float64(F * F) + 2.0) + Float64(2.0 * x)) ^ Float64(-Float64(1.0 / 2.0)))))
end
↓
function code(F, B, x)
t_0 = Float64(x / tan(B))
tmp = 0.0
if (F <= -2.55e+187)
tmp = Float64(Float64(Float64(-F) * Float64(exp(log(Float64(-1.0 / F))) * Float64(-1.0 / sin(B)))) - t_0);
elseif (F <= 1.35e+154)
tmp = Float64(Float64(Float64(F * (fma(F, F, 2.0) ^ -0.5)) / sin(B)) - t_0);
else
tmp = Float64(Float64(Float64(exp(log(Float64(1.0 / F))) * F) / sin(B)) - t_0);
end
return tmp
end
code[F_, B_, x_] := N[((-N[(x * N[(1.0 / N[Tan[B], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]) + N[(N[(F / N[Sin[B], $MachinePrecision]), $MachinePrecision] * N[Power[N[(N[(N[(F * F), $MachinePrecision] + 2.0), $MachinePrecision] + N[(2.0 * x), $MachinePrecision]), $MachinePrecision], (-N[(1.0 / 2.0), $MachinePrecision])], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
↓
code[F_, B_, x_] := Block[{t$95$0 = N[(x / N[Tan[B], $MachinePrecision]), $MachinePrecision]}, If[LessEqual[F, -2.55e+187], N[(N[((-F) * N[(N[Exp[N[Log[N[(-1.0 / F), $MachinePrecision]], $MachinePrecision]], $MachinePrecision] * N[(-1.0 / N[Sin[B], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - t$95$0), $MachinePrecision], If[LessEqual[F, 1.35e+154], N[(N[(N[(F * N[Power[N[(F * F + 2.0), $MachinePrecision], -0.5], $MachinePrecision]), $MachinePrecision] / N[Sin[B], $MachinePrecision]), $MachinePrecision] - t$95$0), $MachinePrecision], N[(N[(N[(N[Exp[N[Log[N[(1.0 / F), $MachinePrecision]], $MachinePrecision]], $MachinePrecision] * F), $MachinePrecision] / N[Sin[B], $MachinePrecision]), $MachinePrecision] - t$95$0), $MachinePrecision]]]]
\left(-x \cdot \frac{1}{\tan B}\right) + \frac{F}{\sin B} \cdot {\left(\left(F \cdot F + 2\right) + 2 \cdot x\right)}^{\left(-\frac{1}{2}\right)}
↓
\begin{array}{l}
t_0 := \frac{x}{\tan B}\\
\mathbf{if}\;F \leq -2.55 \cdot 10^{+187}:\\
\;\;\;\;\left(-F\right) \cdot \left(e^{\log \left(\frac{-1}{F}\right)} \cdot \frac{-1}{\sin B}\right) - t_0\\
\mathbf{elif}\;F \leq 1.35 \cdot 10^{+154}:\\
\;\;\;\;\frac{F \cdot {\left(\mathsf{fma}\left(F, F, 2\right)\right)}^{-0.5}}{\sin B} - t_0\\
\mathbf{else}:\\
\;\;\;\;\frac{e^{\log \left(\frac{1}{F}\right)} \cdot F}{\sin B} - t_0\\
\end{array}
Alternatives
| Alternative 1 |
|---|
| Error | 2.2 |
|---|
| Cost | 26632 |
|---|
\[\begin{array}{l}
t_0 := \frac{x}{\tan B}\\
\mathbf{if}\;F \leq -2.55 \cdot 10^{+187}:\\
\;\;\;\;\frac{e^{\log \left(\frac{-1}{F}\right)} \cdot F}{\sin B} - t_0\\
\mathbf{elif}\;F \leq 1.35 \cdot 10^{+154}:\\
\;\;\;\;\frac{{\left(\mathsf{fma}\left(F, F, 2\right)\right)}^{-0.5}}{\sin B} \cdot F - t_0\\
\mathbf{else}:\\
\;\;\;\;\frac{e^{\log \left(\frac{1}{F}\right)} \cdot F}{\sin B} - t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 2.2 |
|---|
| Cost | 26632 |
|---|
\[\begin{array}{l}
t_0 := \frac{x}{\tan B}\\
\mathbf{if}\;F \leq -2.55 \cdot 10^{+187}:\\
\;\;\;\;\frac{e^{\log \left(\frac{-1}{F}\right)} \cdot F}{\sin B} - t_0\\
\mathbf{elif}\;F \leq 1.35 \cdot 10^{+154}:\\
\;\;\;\;\frac{F \cdot {\left(\mathsf{fma}\left(F, F, 2\right)\right)}^{-0.5}}{\sin B} - t_0\\
\mathbf{else}:\\
\;\;\;\;\frac{e^{\log \left(\frac{1}{F}\right)} \cdot F}{\sin B} - t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 2.4 |
|---|
| Cost | 26568 |
|---|
\[\begin{array}{l}
t_0 := \frac{x}{\tan B}\\
\mathbf{if}\;F \leq -2.7 \cdot 10^{+89}:\\
\;\;\;\;\frac{e^{\log \left(\frac{-1}{F}\right)} \cdot F}{\sin B} - t_0\\
\mathbf{elif}\;F \leq 1.25 \cdot 10^{+134}:\\
\;\;\;\;\left(-t_0\right) + \frac{F}{\sin B} \cdot {\left(\left(F \cdot F + 2\right) + 2 \cdot x\right)}^{\left(-\frac{1}{2}\right)}\\
\mathbf{else}:\\
\;\;\;\;\frac{e^{\log \left(\frac{1}{F}\right)} \cdot F}{\sin B} - t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 5.3 |
|---|
| Cost | 26436 |
|---|
\[\begin{array}{l}
t_0 := \frac{x}{\tan B}\\
t_1 := e^{\log \left(\frac{1}{F}\right)}\\
\mathbf{if}\;F \leq -3.3 \cdot 10^{+89}:\\
\;\;\;\;\frac{e^{\log \left(\frac{-1}{F}\right)} \cdot F}{\sin B} - t_0\\
\mathbf{elif}\;F \leq 8.8 \cdot 10^{+133}:\\
\;\;\;\;\left(-t_0\right) + \frac{F}{\sin B} \cdot {\left(\left(F \cdot F + 2\right) + 2 \cdot x\right)}^{\left(-\frac{1}{2}\right)}\\
\mathbf{else}:\\
\;\;\;\;\left(-x \cdot \frac{1}{B}\right) + \begin{array}{l}
\mathbf{if}\;F \ne 0:\\
\;\;\;\;\frac{1}{\frac{\frac{\sin B}{t_1}}{F}}\\
\mathbf{else}:\\
\;\;\;\;\frac{F \cdot t_1}{\sin B}\\
\end{array}\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 13.7 |
|---|
| Cost | 21016 |
|---|
\[\begin{array}{l}
t_0 := {\left(\mathsf{fma}\left(F, F, 2\right)\right)}^{-0.5}\\
t_1 := e^{\log \left(\frac{1}{F}\right)}\\
t_2 := \frac{x}{\tan B}\\
t_3 := \frac{F \cdot t_0}{B} - t_2\\
\mathbf{if}\;F \leq -6.5 \cdot 10^{+221}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;F \leq -2.55 \cdot 10^{+187}:\\
\;\;\;\;\left(-\frac{x}{B}\right) + \frac{F}{\sin B} \cdot e^{\log \left(\frac{-1}{F}\right)}\\
\mathbf{elif}\;F \leq -6 \cdot 10^{+148}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;F \leq -3 \cdot 10^{-25}:\\
\;\;\;\;\left(-F\right) \cdot \left(t_0 \cdot \frac{-1}{\sin B}\right) - \frac{x}{B}\\
\mathbf{elif}\;F \leq 10500000:\\
\;\;\;\;\frac{{2}^{-0.5} \cdot F}{\sin B} - t_2\\
\mathbf{else}:\\
\;\;\;\;\left(-x \cdot \frac{1}{B}\right) + \begin{array}{l}
\mathbf{if}\;F \ne 0:\\
\;\;\;\;\frac{1}{\frac{\frac{\sin B}{t_1}}{F}}\\
\mathbf{else}:\\
\;\;\;\;\frac{F \cdot t_1}{\sin B}\\
\end{array}\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 13.7 |
|---|
| Cost | 20884 |
|---|
\[\begin{array}{l}
t_0 := {\left(\mathsf{fma}\left(F, F, 2\right)\right)}^{-0.5}\\
t_1 := \frac{x}{\tan B}\\
t_2 := \frac{F \cdot t_0}{B} - t_1\\
\mathbf{if}\;F \leq -3.2 \cdot 10^{+226}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;F \leq -1.85 \cdot 10^{+190}:\\
\;\;\;\;\left(-\frac{x}{B}\right) + \frac{F}{\sin B} \cdot e^{\log \left(\frac{-1}{F}\right)}\\
\mathbf{elif}\;F \leq -1.4 \cdot 10^{+147}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;F \leq -3 \cdot 10^{-25}:\\
\;\;\;\;\left(-F\right) \cdot \left(t_0 \cdot \frac{-1}{\sin B}\right) - \frac{x}{B}\\
\mathbf{elif}\;F \leq 10500000:\\
\;\;\;\;\frac{{2}^{-0.5} \cdot F}{\sin B} - t_1\\
\mathbf{else}:\\
\;\;\;\;\left(-x \cdot \frac{1}{B}\right) + \frac{1}{\sin B} \cdot \left(F \cdot e^{\log \left(\frac{1}{F}\right)}\right)\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 10.6 |
|---|
| Cost | 20872 |
|---|
\[\begin{array}{l}
t_0 := e^{\log \left(\frac{1}{F}\right)}\\
\mathbf{if}\;F \leq -3.65 \cdot 10^{+264}:\\
\;\;\;\;\frac{\left(-x\right) + e^{\log \left(\frac{-1}{F}\right)} \cdot F}{B}\\
\mathbf{elif}\;F \leq 1.55 \cdot 10^{+134}:\\
\;\;\;\;\left(-\frac{x}{\tan B}\right) + \frac{F}{\sin B} \cdot {\left(\left(F \cdot F + 2\right) + 2 \cdot x\right)}^{\left(-\frac{1}{2}\right)}\\
\mathbf{else}:\\
\;\;\;\;\left(-x \cdot \frac{1}{B}\right) + \begin{array}{l}
\mathbf{if}\;F \ne 0:\\
\;\;\;\;\frac{1}{\frac{\frac{\sin B}{t_0}}{F}}\\
\mathbf{else}:\\
\;\;\;\;\frac{F \cdot t_0}{\sin B}\\
\end{array}\\
\end{array}
\]
| Alternative 8 |
|---|
| Error | 15.5 |
|---|
| Cost | 20760 |
|---|
\[\begin{array}{l}
t_0 := {\left(\mathsf{fma}\left(F, F, 2\right)\right)}^{-0.5}\\
t_1 := \frac{t_0 \cdot F}{\sin B} - \frac{x}{B}\\
t_2 := \frac{x}{\tan B}\\
t_3 := \frac{F \cdot t_0}{B} - t_2\\
\mathbf{if}\;F \leq -6 \cdot 10^{+224}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;F \leq -6.8 \cdot 10^{+196}:\\
\;\;\;\;\left(-\frac{x}{B}\right) + \frac{F}{\sin B} \cdot e^{\log \left(\frac{-1}{F}\right)}\\
\mathbf{elif}\;F \leq -1 \cdot 10^{+149}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;F \leq -2.85 \cdot 10^{-5}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;F \leq 10500000:\\
\;\;\;\;\frac{{2}^{-0.5} \cdot F}{\sin B} - t_2\\
\mathbf{elif}\;F \leq 1.35 \cdot 10^{+154}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;\frac{\left(-x\right) + e^{\log \left(\frac{1}{F}\right)} \cdot F}{B}\\
\end{array}
\]
| Alternative 9 |
|---|
| Error | 13.5 |
|---|
| Cost | 20756 |
|---|
\[\begin{array}{l}
t_0 := {\left(\mathsf{fma}\left(F, F, 2\right)\right)}^{-0.5}\\
t_1 := \frac{x}{\tan B}\\
t_2 := \frac{F \cdot t_0}{B} - t_1\\
\mathbf{if}\;F \leq -1.45 \cdot 10^{+225}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;F \leq -2.3 \cdot 10^{+188}:\\
\;\;\;\;\left(-\frac{x}{B}\right) + \frac{F}{\sin B} \cdot e^{\log \left(\frac{-1}{F}\right)}\\
\mathbf{elif}\;F \leq -7.2 \cdot 10^{+146}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;F \leq -2.3 \cdot 10^{-6}:\\
\;\;\;\;\frac{t_0 \cdot F}{\sin B} - \frac{x}{B}\\
\mathbf{elif}\;F \leq 10500000:\\
\;\;\;\;\frac{{2}^{-0.5} \cdot F}{\sin B} - t_1\\
\mathbf{else}:\\
\;\;\;\;\left(-x \cdot \frac{1}{B}\right) + \frac{e^{\log \left(\frac{1}{F}\right)}}{\sin B} \cdot F\\
\end{array}
\]
| Alternative 10 |
|---|
| Error | 13.7 |
|---|
| Cost | 20756 |
|---|
\[\begin{array}{l}
t_0 := {\left(\mathsf{fma}\left(F, F, 2\right)\right)}^{-0.5}\\
t_1 := \frac{x}{\tan B}\\
t_2 := \frac{F \cdot t_0}{B} - t_1\\
\mathbf{if}\;F \leq -5 \cdot 10^{+222}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;F \leq -3.7 \cdot 10^{+193}:\\
\;\;\;\;\left(-\frac{x}{B}\right) + \frac{F}{\sin B} \cdot e^{\log \left(\frac{-1}{F}\right)}\\
\mathbf{elif}\;F \leq -5.4 \cdot 10^{+147}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;F \leq -3 \cdot 10^{-25}:\\
\;\;\;\;\left(-F\right) \cdot \left(t_0 \cdot \frac{-1}{\sin B}\right) - \frac{x}{B}\\
\mathbf{elif}\;F \leq 10500000:\\
\;\;\;\;\frac{{2}^{-0.5} \cdot F}{\sin B} - t_1\\
\mathbf{else}:\\
\;\;\;\;\left(-x \cdot \frac{1}{B}\right) + \frac{e^{\log \left(\frac{1}{F}\right)}}{\sin B} \cdot F\\
\end{array}
\]
| Alternative 11 |
|---|
| Error | 16.6 |
|---|
| Cost | 20500 |
|---|
\[\begin{array}{l}
t_0 := -\frac{x}{B}\\
t_1 := \frac{F}{\sin B}\\
t_2 := \frac{x}{\tan B}\\
t_3 := \frac{F \cdot {\left(\mathsf{fma}\left(F, F, 2\right)\right)}^{-0.5}}{B} - t_2\\
\mathbf{if}\;F \leq -4 \cdot 10^{+226}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;F \leq -1.2 \cdot 10^{+190}:\\
\;\;\;\;t_0 + t_1 \cdot e^{\log \left(\frac{-1}{F}\right)}\\
\mathbf{elif}\;F \leq -1.4 \cdot 10^{+88}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;F \leq -3 \cdot 10^{-25}:\\
\;\;\;\;t_0 + t_1 \cdot {\left(\left(F \cdot F + 2\right) + 2 \cdot x\right)}^{\left(-\frac{1}{2}\right)}\\
\mathbf{elif}\;F \leq 10500000:\\
\;\;\;\;\frac{{2}^{-0.5} \cdot F}{\sin B} - t_2\\
\mathbf{elif}\;F \leq 1.2 \cdot 10^{+176}:\\
\;\;\;\;\left(-x \cdot \frac{1}{B}\right) + t_1 \cdot \frac{1}{F}\\
\mathbf{else}:\\
\;\;\;\;\frac{\left(-x\right) + e^{\log \left(\frac{1}{F}\right)} \cdot F}{B}\\
\end{array}
\]
| Alternative 12 |
|---|
| Error | 17.9 |
|---|
| Cost | 20236 |
|---|
\[\begin{array}{l}
t_0 := \frac{F}{\sin B}\\
\mathbf{if}\;F \leq -1.18 \cdot 10^{+198}:\\
\;\;\;\;\frac{\left(-x\right) + e^{\log \left(\frac{-1}{F}\right)} \cdot F}{B}\\
\mathbf{elif}\;F \leq -3 \cdot 10^{-25}:\\
\;\;\;\;\left(-\frac{x}{B}\right) + t_0 \cdot {\left(\left(F \cdot F + 2\right) + 2 \cdot x\right)}^{\left(-\frac{1}{2}\right)}\\
\mathbf{elif}\;F \leq 10500000:\\
\;\;\;\;\frac{{2}^{-0.5} \cdot F}{\sin B} - \frac{x}{\tan B}\\
\mathbf{elif}\;F \leq 3.2 \cdot 10^{+175}:\\
\;\;\;\;\left(-x \cdot \frac{1}{B}\right) + t_0 \cdot \frac{1}{F}\\
\mathbf{else}:\\
\;\;\;\;\frac{\left(-x\right) + e^{\log \left(\frac{1}{F}\right)} \cdot F}{B}\\
\end{array}
\]
| Alternative 13 |
|---|
| Error | 17.6 |
|---|
| Cost | 20236 |
|---|
\[\begin{array}{l}
t_0 := \frac{F}{\sin B}\\
t_1 := e^{\log \left(\frac{-1}{F}\right)}\\
\mathbf{if}\;F \leq -2.6 \cdot 10^{+266}:\\
\;\;\;\;\frac{\left(-x\right) + t_1 \cdot F}{B}\\
\mathbf{elif}\;F \leq -6400:\\
\;\;\;\;\left(-\frac{x}{B}\right) + t_0 \cdot t_1\\
\mathbf{elif}\;F \leq 10500000:\\
\;\;\;\;\frac{{2}^{-0.5} \cdot F}{\sin B} - \frac{x}{\tan B}\\
\mathbf{elif}\;F \leq 1.05 \cdot 10^{+175}:\\
\;\;\;\;\left(-x \cdot \frac{1}{B}\right) + t_0 \cdot \frac{1}{F}\\
\mathbf{else}:\\
\;\;\;\;\frac{\left(-x\right) + e^{\log \left(\frac{1}{F}\right)} \cdot F}{B}\\
\end{array}
\]
| Alternative 14 |
|---|
| Error | 27.7 |
|---|
| Cost | 14472 |
|---|
\[\begin{array}{l}
\mathbf{if}\;F \leq -1.18 \cdot 10^{+198}:\\
\;\;\;\;\frac{\left(-x\right) + e^{\log \left(\frac{-1}{F}\right)} \cdot F}{B}\\
\mathbf{elif}\;F \leq 1.35 \cdot 10^{+154}:\\
\;\;\;\;\left(-\frac{x}{B}\right) + \frac{F}{\sin B} \cdot {\left(\left(F \cdot F + 2\right) + 2 \cdot x\right)}^{\left(-\frac{1}{2}\right)}\\
\mathbf{else}:\\
\;\;\;\;\frac{\left(-x\right) + e^{\log \left(\frac{1}{F}\right)} \cdot F}{B}\\
\end{array}
\]
| Alternative 15 |
|---|
| Error | 30.0 |
|---|
| Cost | 14024 |
|---|
\[\begin{array}{l}
t_0 := \frac{F}{\sin B}\\
\mathbf{if}\;F \leq -3.1 \cdot 10^{+65}:\\
\;\;\;\;\frac{\left(-x\right) + e^{\log \left(\frac{-1}{F}\right)} \cdot F}{B}\\
\mathbf{elif}\;F \leq 1.65:\\
\;\;\;\;\left(-\frac{x}{B}\right) + t_0 \cdot {\left(2 \cdot x + 2\right)}^{-0.5}\\
\mathbf{elif}\;F \leq 6.5 \cdot 10^{+175}:\\
\;\;\;\;\left(-x \cdot \frac{1}{B}\right) + t_0 \cdot \frac{1}{F}\\
\mathbf{else}:\\
\;\;\;\;\frac{\left(-x\right) + e^{\log \left(\frac{1}{F}\right)} \cdot F}{B}\\
\end{array}
\]
| Alternative 16 |
|---|
| Error | 34.0 |
|---|
| Cost | 13836 |
|---|
\[\begin{array}{l}
\mathbf{if}\;F \leq -3 \cdot 10^{-25}:\\
\;\;\;\;\frac{\left(-x\right) + e^{\log \left(\frac{-1}{F}\right)} \cdot F}{B}\\
\mathbf{elif}\;F \leq 95:\\
\;\;\;\;\left(-\frac{x}{B}\right) + \left(0.16666666666666666 \cdot \left(F \cdot B\right) + \frac{F}{B}\right) \cdot {\left(\left(F \cdot F + 2\right) + 2 \cdot x\right)}^{\left(-\frac{1}{2}\right)}\\
\mathbf{elif}\;F \leq 1.6 \cdot 10^{+176}:\\
\;\;\;\;\left(-x \cdot \frac{1}{B}\right) + \frac{F}{\sin B} \cdot \frac{1}{F}\\
\mathbf{else}:\\
\;\;\;\;\frac{\left(-x\right) + e^{\log \left(\frac{1}{F}\right)} \cdot F}{B}\\
\end{array}
\]
| Alternative 17 |
|---|
| Error | 34.0 |
|---|
| Cost | 13836 |
|---|
\[\begin{array}{l}
\mathbf{if}\;F \leq -1.18 \cdot 10^{+198}:\\
\;\;\;\;\frac{\left(-x\right) + e^{\log \left(\frac{-1}{F}\right)} \cdot F}{B}\\
\mathbf{elif}\;F \leq 126:\\
\;\;\;\;\frac{\left(-x\right) + {\left(\mathsf{fma}\left(F, F, 2\right)\right)}^{-0.5} \cdot F}{B}\\
\mathbf{elif}\;F \leq 8.2 \cdot 10^{+175}:\\
\;\;\;\;\left(-x \cdot \frac{1}{B}\right) + \frac{F}{\sin B} \cdot \frac{1}{F}\\
\mathbf{else}:\\
\;\;\;\;\frac{\left(-x\right) + e^{\log \left(\frac{1}{F}\right)} \cdot F}{B}\\
\end{array}
\]
| Alternative 18 |
|---|
| Error | 34.1 |
|---|
| Cost | 13572 |
|---|
\[\begin{array}{l}
\mathbf{if}\;F \leq -3 \cdot 10^{-25}:\\
\;\;\;\;\frac{\left(-x\right) + e^{\log \left(\frac{-1}{F}\right)} \cdot F}{B}\\
\mathbf{elif}\;F \leq 62:\\
\;\;\;\;\left(-\frac{x}{B}\right) + \left(0.16666666666666666 \cdot \left(F \cdot B\right) + \frac{F}{B}\right) \cdot {\left(\left(F \cdot F + 2\right) + 2 \cdot x\right)}^{\left(-\frac{1}{2}\right)}\\
\mathbf{else}:\\
\;\;\;\;\left(-x \cdot \frac{1}{B}\right) + \frac{F}{\sin B} \cdot \frac{1}{F}\\
\end{array}
\]
| Alternative 19 |
|---|
| Error | 36.7 |
|---|
| Cost | 13380 |
|---|
\[\begin{array}{l}
\mathbf{if}\;F \leq -4.4 \cdot 10^{+268}:\\
\;\;\;\;\frac{e^{\log \left(\frac{-1}{F}\right)} \cdot F}{B}\\
\mathbf{elif}\;F \leq 28:\\
\;\;\;\;\left(-\frac{x}{B}\right) + \frac{F}{B} \cdot {\left(\left(F \cdot F + 2\right) + 2 \cdot x\right)}^{\left(-\frac{1}{2}\right)}\\
\mathbf{else}:\\
\;\;\;\;\left(-x \cdot \frac{1}{B}\right) + \frac{F}{\sin B} \cdot \frac{1}{F}\\
\end{array}
\]
| Alternative 20 |
|---|
| Error | 36.6 |
|---|
| Cost | 8456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;F \leq -1.32 \cdot 10^{+154}:\\
\;\;\;\;\frac{-x}{B}\\
\mathbf{elif}\;F \leq 57:\\
\;\;\;\;\left(-\frac{x}{B}\right) + \left(0.16666666666666666 \cdot \left(F \cdot B\right) + \frac{F}{B}\right) \cdot {\left(\left(F \cdot F + 2\right) + 2 \cdot x\right)}^{\left(-\frac{1}{2}\right)}\\
\mathbf{else}:\\
\;\;\;\;\left(-x \cdot \frac{1}{B}\right) + \frac{F}{\sin B} \cdot \frac{1}{F}\\
\end{array}
\]
| Alternative 21 |
|---|
| Error | 36.6 |
|---|
| Cost | 8072 |
|---|
\[\begin{array}{l}
\mathbf{if}\;F \leq -2.55 \cdot 10^{+187}:\\
\;\;\;\;\frac{-x}{B}\\
\mathbf{elif}\;F \leq 19:\\
\;\;\;\;\left(-\frac{x}{B}\right) + \frac{F}{B} \cdot {\left(\left(F \cdot F + 2\right) + 2 \cdot x\right)}^{\left(-\frac{1}{2}\right)}\\
\mathbf{else}:\\
\;\;\;\;\left(-x \cdot \frac{1}{B}\right) + \frac{F}{\sin B} \cdot \frac{1}{F}\\
\end{array}
\]
| Alternative 22 |
|---|
| Error | 38.7 |
|---|
| Cost | 7560 |
|---|
\[\begin{array}{l}
\mathbf{if}\;F \leq -4.3 \cdot 10^{+70}:\\
\;\;\;\;\frac{-x}{B}\\
\mathbf{elif}\;F \leq 0.019:\\
\;\;\;\;\frac{\left(-x\right) + {2}^{-0.5} \cdot F}{B}\\
\mathbf{else}:\\
\;\;\;\;\left(-x \cdot \frac{1}{B}\right) + \frac{F}{\sin B} \cdot \frac{1}{F}\\
\end{array}
\]
| Alternative 23 |
|---|
| Error | 45.2 |
|---|
| Cost | 7240 |
|---|
\[\begin{array}{l}
t_0 := \frac{-x}{B}\\
\mathbf{if}\;F \leq -5.5 \cdot 10^{+78}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;F \leq 7.2 \cdot 10^{+21}:\\
\;\;\;\;\frac{\left(-x\right) + {2}^{-0.5} \cdot F}{B}\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 24 |
|---|
| Error | 47.7 |
|---|
| Cost | 7048 |
|---|
\[\begin{array}{l}
t_0 := \frac{-x}{B}\\
\mathbf{if}\;x \leq -1.85 \cdot 10^{-191}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 2.55 \cdot 10^{-135}:\\
\;\;\;\;\frac{{2}^{-0.5} \cdot F}{B}\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 25 |
|---|
| Error | 50.1 |
|---|
| Cost | 256 |
|---|
\[\frac{-x}{B}
\]