\[\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{1}{\sin B}\\
t_1 := \frac{x}{\tan B}\\
\mathbf{if}\;F \leq -2.202497790196905 \cdot 10^{+87}:\\
\;\;\;\;\frac{-1}{\sin B} - t_1\\
\mathbf{elif}\;F \leq 3.5 \cdot 10^{-5}:\\
\;\;\;\;t_0 \cdot \frac{F}{\mathsf{hypot}\left(F, \sqrt{\mathsf{fma}\left(2, x, 2\right)}\right)} - t_1\\
\mathbf{else}:\\
\;\;\;\;t_0 - t_1\\
\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 (/ 1.0 (sin B))) (t_1 (/ x (tan B))))
(if (<= F -2.202497790196905e+87)
(- (/ -1.0 (sin B)) t_1)
(if (<= F 3.5e-5)
(- (* t_0 (/ F (hypot F (sqrt (fma 2.0 x 2.0))))) t_1)
(- t_0 t_1)))))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 = 1.0 / sin(B);
double t_1 = x / tan(B);
double tmp;
if (F <= -2.202497790196905e+87) {
tmp = (-1.0 / sin(B)) - t_1;
} else if (F <= 3.5e-5) {
tmp = (t_0 * (F / hypot(F, sqrt(fma(2.0, x, 2.0))))) - t_1;
} else {
tmp = t_0 - t_1;
}
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(1.0 / sin(B))
t_1 = Float64(x / tan(B))
tmp = 0.0
if (F <= -2.202497790196905e+87)
tmp = Float64(Float64(-1.0 / sin(B)) - t_1);
elseif (F <= 3.5e-5)
tmp = Float64(Float64(t_0 * Float64(F / hypot(F, sqrt(fma(2.0, x, 2.0))))) - t_1);
else
tmp = Float64(t_0 - t_1);
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[(1.0 / N[Sin[B], $MachinePrecision]), $MachinePrecision]}, Block[{t$95$1 = N[(x / N[Tan[B], $MachinePrecision]), $MachinePrecision]}, If[LessEqual[F, -2.202497790196905e+87], N[(N[(-1.0 / N[Sin[B], $MachinePrecision]), $MachinePrecision] - t$95$1), $MachinePrecision], If[LessEqual[F, 3.5e-5], N[(N[(t$95$0 * N[(F / N[Sqrt[F ^ 2 + N[Sqrt[N[(2.0 * x + 2.0), $MachinePrecision]], $MachinePrecision] ^ 2], $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - t$95$1), $MachinePrecision], N[(t$95$0 - t$95$1), $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{1}{\sin B}\\
t_1 := \frac{x}{\tan B}\\
\mathbf{if}\;F \leq -2.202497790196905 \cdot 10^{+87}:\\
\;\;\;\;\frac{-1}{\sin B} - t_1\\
\mathbf{elif}\;F \leq 3.5 \cdot 10^{-5}:\\
\;\;\;\;t_0 \cdot \frac{F}{\mathsf{hypot}\left(F, \sqrt{\mathsf{fma}\left(2, x, 2\right)}\right)} - t_1\\
\mathbf{else}:\\
\;\;\;\;t_0 - t_1\\
\end{array}
Alternatives
| Alternative 1 |
|---|
| Error | 0.7 |
|---|
| Cost | 33032 |
|---|
\[\begin{array}{l}
t_0 := \frac{x}{\tan B}\\
\mathbf{if}\;F \leq -2.202497790196905 \cdot 10^{+87}:\\
\;\;\;\;\frac{-1}{\sin B} - t_0\\
\mathbf{elif}\;F \leq 3.5 \cdot 10^{-5}:\\
\;\;\;\;\frac{\frac{F}{\mathsf{hypot}\left(F, \sqrt{\mathsf{fma}\left(2, x, 2\right)}\right)}}{\sin B} - t_0\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{\sin B} - t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 0.4 |
|---|
| Cost | 20616 |
|---|
\[\begin{array}{l}
t_0 := \frac{x}{\tan B}\\
\mathbf{if}\;F \leq -2.4 \cdot 10^{+17}:\\
\;\;\;\;\frac{-1}{\sin B} - t_0\\
\mathbf{elif}\;F \leq 3.5 \cdot 10^{-5}:\\
\;\;\;\;\frac{F}{\sin B} \cdot {\left(\left(2 + F \cdot F\right) + x \cdot 2\right)}^{-0.5} - t_0\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{\sin B} - t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 0.7 |
|---|
| Cost | 20552 |
|---|
\[\begin{array}{l}
t_0 := \frac{1}{\sin B}\\
t_1 := \frac{x}{\tan B}\\
\mathbf{if}\;F \leq -3.9 \cdot 10^{-5}:\\
\;\;\;\;\frac{-1}{\sin B} - t_1\\
\mathbf{elif}\;F \leq 3.5 \cdot 10^{-5}:\\
\;\;\;\;t_0 \cdot \left(F \cdot \sqrt{\frac{1}{2 + x \cdot 2}}\right) - t_1\\
\mathbf{else}:\\
\;\;\;\;t_0 - t_1\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.8 |
|---|
| Cost | 20424 |
|---|
\[\begin{array}{l}
t_0 := \frac{x}{\tan B}\\
\mathbf{if}\;F \leq -3.9 \cdot 10^{-5}:\\
\;\;\;\;\frac{-1}{\sin B} - t_0\\
\mathbf{elif}\;F \leq 3.5 \cdot 10^{-5}:\\
\;\;\;\;x \cdot \frac{-1}{\tan B} + \frac{F}{\sin B \cdot \sqrt{2 + x \cdot 2}}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{\sin B} - t_0\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 7.5 |
|---|
| Cost | 14480 |
|---|
\[\begin{array}{l}
t_0 := \frac{F}{\sin B} \cdot {\left(\left(2 + F \cdot F\right) + x \cdot 2\right)}^{-0.5} - \frac{x}{B}\\
t_1 := \frac{x}{\tan B}\\
\mathbf{if}\;F \leq -9.6 \cdot 10^{-14}:\\
\;\;\;\;\frac{-1}{\sin B} - t_1\\
\mathbf{elif}\;F \leq -4.7 \cdot 10^{-107}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;F \leq 7 \cdot 10^{-85}:\\
\;\;\;\;\cos B \cdot \frac{-x}{\sin B}\\
\mathbf{elif}\;F \leq 3.5 \cdot 10^{-5}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{\sin B} - t_1\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 6.2 |
|---|
| Cost | 14344 |
|---|
\[\begin{array}{l}
t_0 := \frac{x}{\tan B}\\
\mathbf{if}\;F \leq -6.1 \cdot 10^{-27}:\\
\;\;\;\;\frac{-1}{\sin B} - t_0\\
\mathbf{elif}\;F \leq 3.5 \cdot 10^{-5}:\\
\;\;\;\;\frac{-1}{\frac{\tan B}{x}} + {\left(\left(2 + F \cdot F\right) + x \cdot 2\right)}^{-0.5} \cdot \frac{F}{B}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{\sin B} - t_0\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 7.5 |
|---|
| Cost | 14288 |
|---|
\[\begin{array}{l}
t_0 := \frac{F}{\sin B} \cdot \sqrt{\frac{1}{2 + x \cdot 2}} - \frac{x}{B}\\
t_1 := \frac{x}{\tan B}\\
\mathbf{if}\;F \leq -9.6 \cdot 10^{-14}:\\
\;\;\;\;\frac{-1}{\sin B} - t_1\\
\mathbf{elif}\;F \leq -4.7 \cdot 10^{-107}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;F \leq 7 \cdot 10^{-85}:\\
\;\;\;\;\cos B \cdot \frac{-x}{\sin B}\\
\mathbf{elif}\;F \leq 3.5 \cdot 10^{-5}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{\sin B} - t_1\\
\end{array}
\]
| Alternative 8 |
|---|
| Error | 15.3 |
|---|
| Cost | 13512 |
|---|
\[\begin{array}{l}
\mathbf{if}\;F \leq -3.8 \cdot 10^{-5}:\\
\;\;\;\;\frac{-1}{\sin B} - \frac{x}{B}\\
\mathbf{elif}\;F \leq 3.4 \cdot 10^{-62}:\\
\;\;\;\;\cos B \cdot \frac{-x}{\sin B}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{\sin B} - \frac{x}{\tan B}\\
\end{array}
\]
| Alternative 9 |
|---|
| Error | 10.8 |
|---|
| Cost | 13512 |
|---|
\[\begin{array}{l}
t_0 := \frac{x}{\tan B}\\
\mathbf{if}\;F \leq -7.8 \cdot 10^{-44}:\\
\;\;\;\;\frac{-1}{\sin B} - t_0\\
\mathbf{elif}\;F \leq 3.4 \cdot 10^{-62}:\\
\;\;\;\;\cos B \cdot \frac{-x}{\sin B}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{\sin B} - t_0\\
\end{array}
\]
| Alternative 10 |
|---|
| Error | 20.2 |
|---|
| Cost | 13448 |
|---|
\[\begin{array}{l}
\mathbf{if}\;F \leq -3.8 \cdot 10^{-5}:\\
\;\;\;\;\frac{-1}{\sin B} - \frac{x}{B}\\
\mathbf{elif}\;F \leq 6.6 \cdot 10^{-16}:\\
\;\;\;\;\cos B \cdot \frac{-x}{\sin B}\\
\mathbf{elif}\;F \leq 1.1201723804836918 \cdot 10^{+53}:\\
\;\;\;\;\frac{F}{F \cdot \sin B} - \frac{x}{B}\\
\mathbf{elif}\;F \leq 6.560669744230036 \cdot 10^{+125}:\\
\;\;\;\;\frac{-1}{\frac{\tan B}{x}} + \frac{1}{B}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{\sin B} - \frac{x}{B}\\
\end{array}
\]
| Alternative 11 |
|---|
| Error | 27.0 |
|---|
| Cost | 8332 |
|---|
\[\begin{array}{l}
t_0 := \frac{-1}{\frac{\tan B}{x}} + \frac{1}{B}\\
\mathbf{if}\;F \leq -5.4841200338751936 \cdot 10^{+66}:\\
\;\;\;\;\frac{-1}{\sin B} - \frac{x}{B}\\
\mathbf{elif}\;F \leq 4 \cdot 10^{-289}:\\
\;\;\;\;\frac{-1}{B} - x \cdot \frac{1}{\tan B}\\
\mathbf{elif}\;F \leq 8.6 \cdot 10^{-213}:\\
\;\;\;\;{\left(\left(2 + F \cdot F\right) + x \cdot 2\right)}^{-0.5} \cdot \left(\frac{F}{B} + 0.16666666666666666 \cdot \left(F \cdot B\right)\right) - \frac{x}{B}\\
\mathbf{elif}\;F \leq 6.6 \cdot 10^{-16}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;F \leq 1.1201723804836918 \cdot 10^{+53}:\\
\;\;\;\;\frac{F}{F \cdot \sin B} - \frac{x}{B}\\
\mathbf{elif}\;F \leq 6.560669744230036 \cdot 10^{+125}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{\sin B} - \frac{x}{B}\\
\end{array}
\]
| Alternative 12 |
|---|
| Error | 27.0 |
|---|
| Cost | 7948 |
|---|
\[\begin{array}{l}
t_0 := \frac{-1}{\frac{\tan B}{x}} + \frac{1}{B}\\
\mathbf{if}\;F \leq -5.4841200338751936 \cdot 10^{+66}:\\
\;\;\;\;\frac{-1}{\sin B} - \frac{x}{B}\\
\mathbf{elif}\;F \leq 4 \cdot 10^{-289}:\\
\;\;\;\;\frac{-1}{B} - x \cdot \frac{1}{\tan B}\\
\mathbf{elif}\;F \leq 8.6 \cdot 10^{-213}:\\
\;\;\;\;{\left(\left(2 + F \cdot F\right) + x \cdot 2\right)}^{-0.5} \cdot \frac{F}{B} - \frac{x}{B}\\
\mathbf{elif}\;F \leq 6.6 \cdot 10^{-16}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;F \leq 1.1201723804836918 \cdot 10^{+53}:\\
\;\;\;\;\frac{F}{F \cdot \sin B} - \frac{x}{B}\\
\mathbf{elif}\;F \leq 6.560669744230036 \cdot 10^{+125}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{\sin B} - \frac{x}{B}\\
\end{array}
\]
| Alternative 13 |
|---|
| Error | 27.1 |
|---|
| Cost | 7768 |
|---|
\[\begin{array}{l}
t_0 := \frac{-1}{\frac{\tan B}{x}} + \frac{1}{B}\\
t_1 := \frac{1}{\sin B} - \frac{x}{B}\\
\mathbf{if}\;F \leq -3.8 \cdot 10^{-5}:\\
\;\;\;\;\frac{-1}{\sin B} - \frac{x}{B}\\
\mathbf{elif}\;F \leq 6.2 \cdot 10^{-281}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;F \leq 8.6 \cdot 10^{-213}:\\
\;\;\;\;\frac{-x}{B}\\
\mathbf{elif}\;F \leq 6.6 \cdot 10^{-16}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;F \leq 1.1201723804836918 \cdot 10^{+53}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;F \leq 6.560669744230036 \cdot 10^{+125}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;t_1\\
\end{array}
\]
| Alternative 14 |
|---|
| Error | 27.2 |
|---|
| Cost | 7768 |
|---|
\[\begin{array}{l}
t_0 := \frac{1}{\sin B} - \frac{x}{B}\\
t_1 := \frac{-1}{\frac{\tan B}{x}} + \frac{1}{B}\\
\mathbf{if}\;F \leq -5.4841200338751936 \cdot 10^{+66}:\\
\;\;\;\;\frac{-1}{\sin B} - \frac{x}{B}\\
\mathbf{elif}\;F \leq 6.2 \cdot 10^{-281}:\\
\;\;\;\;\frac{-1}{B} - x \cdot \frac{1}{\tan B}\\
\mathbf{elif}\;F \leq 8.6 \cdot 10^{-213}:\\
\;\;\;\;\frac{-x}{B}\\
\mathbf{elif}\;F \leq 6.6 \cdot 10^{-16}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;F \leq 1.1201723804836918 \cdot 10^{+53}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;F \leq 6.560669744230036 \cdot 10^{+125}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 15 |
|---|
| Error | 27.2 |
|---|
| Cost | 7768 |
|---|
\[\begin{array}{l}
t_0 := \frac{-1}{\frac{\tan B}{x}} + \frac{1}{B}\\
\mathbf{if}\;F \leq -5.4841200338751936 \cdot 10^{+66}:\\
\;\;\;\;\frac{-1}{\sin B} - \frac{x}{B}\\
\mathbf{elif}\;F \leq 6.2 \cdot 10^{-281}:\\
\;\;\;\;\frac{-1}{B} - x \cdot \frac{1}{\tan B}\\
\mathbf{elif}\;F \leq 8.6 \cdot 10^{-213}:\\
\;\;\;\;\frac{-x}{B}\\
\mathbf{elif}\;F \leq 6.6 \cdot 10^{-16}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;F \leq 1.1201723804836918 \cdot 10^{+53}:\\
\;\;\;\;\frac{F}{F \cdot \sin B} - \frac{x}{B}\\
\mathbf{elif}\;F \leq 6.560669744230036 \cdot 10^{+125}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{\sin B} - \frac{x}{B}\\
\end{array}
\]
| Alternative 16 |
|---|
| Error | 32.0 |
|---|
| Cost | 7112 |
|---|
\[\begin{array}{l}
\mathbf{if}\;F \leq -2.15 \cdot 10^{-44}:\\
\;\;\;\;\frac{-1}{\sin B}\\
\mathbf{elif}\;F \leq 8.1 \cdot 10^{-84}:\\
\;\;\;\;\frac{-x}{B}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{\sin B} - \frac{x}{B}\\
\end{array}
\]
| Alternative 17 |
|---|
| Error | 29.5 |
|---|
| Cost | 7112 |
|---|
\[\begin{array}{l}
\mathbf{if}\;F \leq -2.15 \cdot 10^{-44}:\\
\;\;\;\;\frac{-1}{\sin B} - \frac{x}{B}\\
\mathbf{elif}\;F \leq 8.1 \cdot 10^{-84}:\\
\;\;\;\;\frac{-x}{B}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{\sin B} - \frac{x}{B}\\
\end{array}
\]
| Alternative 18 |
|---|
| Error | 38.4 |
|---|
| Cost | 6988 |
|---|
\[\begin{array}{l}
\mathbf{if}\;F \leq -2.15 \cdot 10^{-44}:\\
\;\;\;\;B \cdot -0.16666666666666666 - \frac{x + 1}{B}\\
\mathbf{elif}\;F \leq 1.8 \cdot 10^{-59}:\\
\;\;\;\;\frac{-x}{B}\\
\mathbf{elif}\;F \leq 1.2844137419186442 \cdot 10^{+154}:\\
\;\;\;\;\frac{1}{B} - \frac{x}{B}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{\sin B}\\
\end{array}
\]
| Alternative 19 |
|---|
| Error | 35.8 |
|---|
| Cost | 6988 |
|---|
\[\begin{array}{l}
\mathbf{if}\;F \leq -2.15 \cdot 10^{-44}:\\
\;\;\;\;\frac{-1}{\sin B}\\
\mathbf{elif}\;F \leq 1.8 \cdot 10^{-59}:\\
\;\;\;\;\frac{-x}{B}\\
\mathbf{elif}\;F \leq 1.2844137419186442 \cdot 10^{+154}:\\
\;\;\;\;\frac{1}{B} - \frac{x}{B}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{\sin B}\\
\end{array}
\]
| Alternative 20 |
|---|
| Error | 39.5 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;F \leq -2.1 \cdot 10^{-44}:\\
\;\;\;\;\frac{-1 - x}{B}\\
\mathbf{elif}\;F \leq 1.8 \cdot 10^{-59}:\\
\;\;\;\;\frac{-x}{B}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{B} - \frac{x}{B}\\
\end{array}
\]
| Alternative 21 |
|---|
| Error | 39.5 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;F \leq -2.15 \cdot 10^{-44}:\\
\;\;\;\;B \cdot -0.16666666666666666 - \frac{x + 1}{B}\\
\mathbf{elif}\;F \leq 1.8 \cdot 10^{-59}:\\
\;\;\;\;\frac{-x}{B}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{B} - \frac{x}{B}\\
\end{array}
\]
| Alternative 22 |
|---|
| Error | 39.5 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;F \leq -2.1 \cdot 10^{-44}:\\
\;\;\;\;\frac{-1 - x}{B}\\
\mathbf{elif}\;F \leq 1.8 \cdot 10^{-59}:\\
\;\;\;\;\frac{-x}{B}\\
\mathbf{else}:\\
\;\;\;\;\frac{1 - x}{B}\\
\end{array}
\]
| Alternative 23 |
|---|
| Error | 48.8 |
|---|
| Cost | 520 |
|---|
\[\begin{array}{l}
t_0 := \frac{-x}{B}\\
\mathbf{if}\;x \leq -4.38281952032195 \cdot 10^{-266}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 6.266815735033279 \cdot 10^{-116}:\\
\;\;\;\;\frac{1}{B}\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 24 |
|---|
| Error | 43.2 |
|---|
| Cost | 520 |
|---|
\[\begin{array}{l}
\mathbf{if}\;F \leq -2.1 \cdot 10^{-44}:\\
\;\;\;\;\frac{-1 - x}{B}\\
\mathbf{elif}\;F \leq 1.2844137419186442 \cdot 10^{+154}:\\
\;\;\;\;\frac{-x}{B}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{B}\\
\end{array}
\]
| Alternative 25 |
|---|
| Error | 51.8 |
|---|
| Cost | 324 |
|---|
\[\begin{array}{l}
\mathbf{if}\;F \leq 8.4 \cdot 10^{-54}:\\
\;\;\;\;\frac{-1}{B}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{B}\\
\end{array}
\]
| Alternative 26 |
|---|
| Error | 57.0 |
|---|
| Cost | 192 |
|---|
\[\frac{1}{B}
\]