\[ \begin{array}{c}[V, l] = \mathsf{sort}([V, l])\\ \end{array} \]
Math FPCore C Fortran Java Python Julia MATLAB Wolfram TeX \[c0 \cdot \sqrt{\frac{A}{V \cdot \ell}}
\]
↓
\[\begin{array}{l}
\mathbf{if}\;V \cdot \ell \leq -2 \cdot 10^{-194}:\\
\;\;\;\;\frac{c0}{\frac{\sqrt{-V}}{\frac{\sqrt{-A}}{\sqrt{\ell}}}}\\
\mathbf{elif}\;V \cdot \ell \leq 0:\\
\;\;\;\;c0 \cdot \frac{\sqrt{\frac{-1}{V}}}{\sqrt{\frac{\ell}{-A}}}\\
\mathbf{else}:\\
\;\;\;\;\frac{c0}{\sqrt{V \cdot \ell} \cdot \sqrt{\frac{1}{A}}}\\
\end{array}
\]
(FPCore (c0 A V l) :precision binary64 (* c0 (sqrt (/ A (* V l))))) ↓
(FPCore (c0 A V l)
:precision binary64
(if (<= (* V l) -2e-194)
(/ c0 (/ (sqrt (- V)) (/ (sqrt (- A)) (sqrt l))))
(if (<= (* V l) 0.0)
(* c0 (/ (sqrt (/ -1.0 V)) (sqrt (/ l (- A)))))
(/ c0 (* (sqrt (* V l)) (sqrt (/ 1.0 A))))))) double code(double c0, double A, double V, double l) {
return c0 * sqrt((A / (V * l)));
}
↓
double code(double c0, double A, double V, double l) {
double tmp;
if ((V * l) <= -2e-194) {
tmp = c0 / (sqrt(-V) / (sqrt(-A) / sqrt(l)));
} else if ((V * l) <= 0.0) {
tmp = c0 * (sqrt((-1.0 / V)) / sqrt((l / -A)));
} else {
tmp = c0 / (sqrt((V * l)) * sqrt((1.0 / A)));
}
return tmp;
}
real(8) function code(c0, a, v, l)
real(8), intent (in) :: c0
real(8), intent (in) :: a
real(8), intent (in) :: v
real(8), intent (in) :: l
code = c0 * sqrt((a / (v * l)))
end function
↓
real(8) function code(c0, a, v, l)
real(8), intent (in) :: c0
real(8), intent (in) :: a
real(8), intent (in) :: v
real(8), intent (in) :: l
real(8) :: tmp
if ((v * l) <= (-2d-194)) then
tmp = c0 / (sqrt(-v) / (sqrt(-a) / sqrt(l)))
else if ((v * l) <= 0.0d0) then
tmp = c0 * (sqrt(((-1.0d0) / v)) / sqrt((l / -a)))
else
tmp = c0 / (sqrt((v * l)) * sqrt((1.0d0 / a)))
end if
code = tmp
end function
public static double code(double c0, double A, double V, double l) {
return c0 * Math.sqrt((A / (V * l)));
}
↓
public static double code(double c0, double A, double V, double l) {
double tmp;
if ((V * l) <= -2e-194) {
tmp = c0 / (Math.sqrt(-V) / (Math.sqrt(-A) / Math.sqrt(l)));
} else if ((V * l) <= 0.0) {
tmp = c0 * (Math.sqrt((-1.0 / V)) / Math.sqrt((l / -A)));
} else {
tmp = c0 / (Math.sqrt((V * l)) * Math.sqrt((1.0 / A)));
}
return tmp;
}
def code(c0, A, V, l):
return c0 * math.sqrt((A / (V * l)))
↓
def code(c0, A, V, l):
tmp = 0
if (V * l) <= -2e-194:
tmp = c0 / (math.sqrt(-V) / (math.sqrt(-A) / math.sqrt(l)))
elif (V * l) <= 0.0:
tmp = c0 * (math.sqrt((-1.0 / V)) / math.sqrt((l / -A)))
else:
tmp = c0 / (math.sqrt((V * l)) * math.sqrt((1.0 / A)))
return tmp
function code(c0, A, V, l)
return Float64(c0 * sqrt(Float64(A / Float64(V * l))))
end
↓
function code(c0, A, V, l)
tmp = 0.0
if (Float64(V * l) <= -2e-194)
tmp = Float64(c0 / Float64(sqrt(Float64(-V)) / Float64(sqrt(Float64(-A)) / sqrt(l))));
elseif (Float64(V * l) <= 0.0)
tmp = Float64(c0 * Float64(sqrt(Float64(-1.0 / V)) / sqrt(Float64(l / Float64(-A)))));
else
tmp = Float64(c0 / Float64(sqrt(Float64(V * l)) * sqrt(Float64(1.0 / A))));
end
return tmp
end
function tmp = code(c0, A, V, l)
tmp = c0 * sqrt((A / (V * l)));
end
↓
function tmp_2 = code(c0, A, V, l)
tmp = 0.0;
if ((V * l) <= -2e-194)
tmp = c0 / (sqrt(-V) / (sqrt(-A) / sqrt(l)));
elseif ((V * l) <= 0.0)
tmp = c0 * (sqrt((-1.0 / V)) / sqrt((l / -A)));
else
tmp = c0 / (sqrt((V * l)) * sqrt((1.0 / A)));
end
tmp_2 = tmp;
end
code[c0_, A_, V_, l_] := N[(c0 * N[Sqrt[N[(A / N[(V * l), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
↓
code[c0_, A_, V_, l_] := If[LessEqual[N[(V * l), $MachinePrecision], -2e-194], N[(c0 / N[(N[Sqrt[(-V)], $MachinePrecision] / N[(N[Sqrt[(-A)], $MachinePrecision] / N[Sqrt[l], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[N[(V * l), $MachinePrecision], 0.0], N[(c0 * N[(N[Sqrt[N[(-1.0 / V), $MachinePrecision]], $MachinePrecision] / N[Sqrt[N[(l / (-A)), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(c0 / N[(N[Sqrt[N[(V * l), $MachinePrecision]], $MachinePrecision] * N[Sqrt[N[(1.0 / A), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]
c0 \cdot \sqrt{\frac{A}{V \cdot \ell}}
↓
\begin{array}{l}
\mathbf{if}\;V \cdot \ell \leq -2 \cdot 10^{-194}:\\
\;\;\;\;\frac{c0}{\frac{\sqrt{-V}}{\frac{\sqrt{-A}}{\sqrt{\ell}}}}\\
\mathbf{elif}\;V \cdot \ell \leq 0:\\
\;\;\;\;c0 \cdot \frac{\sqrt{\frac{-1}{V}}}{\sqrt{\frac{\ell}{-A}}}\\
\mathbf{else}:\\
\;\;\;\;\frac{c0}{\sqrt{V \cdot \ell} \cdot \sqrt{\frac{1}{A}}}\\
\end{array}
Alternatives Alternative 1 Accuracy 78.6% Cost 34769
\[\begin{array}{l}
t_0 := c0 \cdot \sqrt{\frac{A}{V \cdot \ell}}\\
\mathbf{if}\;t_0 \leq -2 \cdot 10^{+192}:\\
\;\;\;\;\frac{c0}{\sqrt{\ell \cdot \frac{V}{A}}}\\
\mathbf{elif}\;t_0 \leq -4 \cdot 10^{-302} \lor \neg \left(t_0 \leq 0\right) \land t_0 \leq 10^{+307}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;\sqrt{\frac{\left(c0 \cdot A\right) \cdot \frac{c0}{-V}}{-\ell}}\\
\end{array}
\]
Alternative 2 Accuracy 78.2% Cost 34768
\[\begin{array}{l}
t_0 := c0 \cdot \sqrt{\frac{A}{V \cdot \ell}}\\
\mathbf{if}\;t_0 \leq -2 \cdot 10^{+192}:\\
\;\;\;\;\frac{c0}{\sqrt{\ell \cdot \frac{V}{A}}}\\
\mathbf{elif}\;t_0 \leq -4 \cdot 10^{-302}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;t_0 \leq 0:\\
\;\;\;\;\sqrt{\frac{\left(c0 \cdot A\right) \cdot \frac{c0}{-V}}{-\ell}}\\
\mathbf{elif}\;t_0 \leq 10^{+307}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{\sqrt{\frac{\ell}{A \cdot \left(c0 \cdot \frac{c0}{V}\right)}}}\\
\end{array}
\]
Alternative 3 Accuracy 76.7% Cost 34640
\[\begin{array}{l}
t_0 := c0 \cdot \sqrt{\frac{A}{V \cdot \ell}}\\
\mathbf{if}\;t_0 \leq -2 \cdot 10^{+192}:\\
\;\;\;\;\frac{c0}{\sqrt{\ell \cdot \frac{V}{A}}}\\
\mathbf{elif}\;t_0 \leq -1 \cdot 10^{-214}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;t_0 \leq 2 \cdot 10^{-275}:\\
\;\;\;\;c0 \cdot \sqrt{\frac{\frac{A}{\ell}}{V}}\\
\mathbf{elif}\;t_0 \leq 10^{+307}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;\sqrt{c0 \cdot \frac{c0 \cdot A}{V \cdot \ell}}\\
\end{array}
\]
Alternative 4 Accuracy 76.9% Cost 34640
\[\begin{array}{l}
t_0 := c0 \cdot \sqrt{\frac{A}{V \cdot \ell}}\\
\mathbf{if}\;t_0 \leq -2 \cdot 10^{+192}:\\
\;\;\;\;\frac{c0}{\sqrt{\ell \cdot \frac{V}{A}}}\\
\mathbf{elif}\;t_0 \leq -1 \cdot 10^{-214}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;t_0 \leq 2 \cdot 10^{-275}:\\
\;\;\;\;c0 \cdot \sqrt{\frac{\frac{A}{\ell}}{V}}\\
\mathbf{elif}\;t_0 \leq 10^{+307}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;\sqrt{\frac{A}{V} \cdot \frac{c0 \cdot c0}{\ell}}\\
\end{array}
\]
Alternative 5 Accuracy 77.6% Cost 34640
\[\begin{array}{l}
t_0 := c0 \cdot \sqrt{\frac{A}{V \cdot \ell}}\\
\mathbf{if}\;t_0 \leq -2 \cdot 10^{+192}:\\
\;\;\;\;\frac{c0}{\sqrt{\ell \cdot \frac{V}{A}}}\\
\mathbf{elif}\;t_0 \leq -1 \cdot 10^{-214}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;t_0 \leq 2 \cdot 10^{-275}:\\
\;\;\;\;c0 \cdot \sqrt{\frac{\frac{A}{\ell}}{V}}\\
\mathbf{elif}\;t_0 \leq 10^{+307}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;\sqrt{\frac{A}{\ell} \cdot \frac{c0}{\frac{V}{c0}}}\\
\end{array}
\]
Alternative 6 Accuracy 77.6% Cost 34640
\[\begin{array}{l}
t_0 := c0 \cdot \sqrt{\frac{A}{V \cdot \ell}}\\
\mathbf{if}\;t_0 \leq -2 \cdot 10^{+192}:\\
\;\;\;\;\frac{c0}{\sqrt{\ell \cdot \frac{V}{A}}}\\
\mathbf{elif}\;t_0 \leq -1 \cdot 10^{-214}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;t_0 \leq 2 \cdot 10^{-275}:\\
\;\;\;\;c0 \cdot \sqrt{\frac{\frac{A}{\ell}}{V}}\\
\mathbf{elif}\;t_0 \leq 10^{+307}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;\sqrt{\frac{c0 \cdot \frac{c0}{V}}{\frac{\ell}{A}}}\\
\end{array}
\]
Alternative 7 Accuracy 77.7% Cost 34640
\[\begin{array}{l}
t_0 := c0 \cdot \sqrt{\frac{A}{V \cdot \ell}}\\
\mathbf{if}\;t_0 \leq -2 \cdot 10^{+192}:\\
\;\;\;\;\frac{c0}{\sqrt{\ell \cdot \frac{V}{A}}}\\
\mathbf{elif}\;t_0 \leq -4 \cdot 10^{-302}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;t_0 \leq 2 \cdot 10^{-200}:\\
\;\;\;\;c0 \cdot \sqrt{\frac{A}{V} \cdot \frac{1}{\ell}}\\
\mathbf{elif}\;t_0 \leq 10^{+307}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;\sqrt{\frac{c0 \cdot \frac{c0}{V}}{\frac{\ell}{A}}}\\
\end{array}
\]
Alternative 8 Accuracy 77.1% Cost 34640
\[\begin{array}{l}
t_0 := c0 \cdot \sqrt{\frac{A}{V \cdot \ell}}\\
\mathbf{if}\;t_0 \leq -2 \cdot 10^{+192}:\\
\;\;\;\;\frac{c0}{\sqrt{\ell \cdot \frac{V}{A}}}\\
\mathbf{elif}\;t_0 \leq -1 \cdot 10^{-214}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;t_0 \leq 5 \cdot 10^{-203}:\\
\;\;\;\;c0 \cdot \sqrt{\frac{1}{V} \cdot \frac{A}{\ell}}\\
\mathbf{elif}\;t_0 \leq 10^{+307}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;\sqrt{\frac{c0 \cdot \frac{c0}{V}}{\frac{\ell}{A}}}\\
\end{array}
\]
Alternative 9 Accuracy 77.2% Cost 34640
\[\begin{array}{l}
t_0 := c0 \cdot \sqrt{\frac{A}{V \cdot \ell}}\\
\mathbf{if}\;t_0 \leq -2 \cdot 10^{+192}:\\
\;\;\;\;\frac{c0}{\sqrt{\ell \cdot \frac{V}{A}}}\\
\mathbf{elif}\;t_0 \leq -1 \cdot 10^{-214}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;t_0 \leq 5 \cdot 10^{-234}:\\
\;\;\;\;c0 \cdot \sqrt{\frac{1}{V} \cdot \frac{A}{\ell}}\\
\mathbf{elif}\;t_0 \leq 10^{+307}:\\
\;\;\;\;\frac{c0}{\sqrt{\frac{\frac{\ell}{\frac{1}{V}}}{A}}}\\
\mathbf{else}:\\
\;\;\;\;\sqrt{\frac{c0 \cdot \frac{c0}{V}}{\frac{\ell}{A}}}\\
\end{array}
\]
Alternative 10 Accuracy 84.2% Cost 14416
\[\begin{array}{l}
t_0 := \sqrt{\frac{A}{V}}\\
\mathbf{if}\;V \cdot \ell \leq -5 \cdot 10^{+105}:\\
\;\;\;\;\frac{c0 \cdot t_0}{\sqrt{\ell}}\\
\mathbf{elif}\;V \cdot \ell \leq -5 \cdot 10^{-42}:\\
\;\;\;\;\frac{c0}{\sqrt{\frac{\frac{\ell}{\frac{1}{V}}}{A}}}\\
\mathbf{elif}\;V \cdot \ell \leq -5 \cdot 10^{-97}:\\
\;\;\;\;c0 \cdot \frac{t_0}{\sqrt{\ell}}\\
\mathbf{elif}\;V \cdot \ell \leq 0:\\
\;\;\;\;c0 \cdot \frac{\sqrt{\frac{A}{-\ell}}}{\sqrt{-V}}\\
\mathbf{else}:\\
\;\;\;\;c0 \cdot \frac{\sqrt{A}}{\sqrt{V \cdot \ell}}\\
\end{array}
\]
Alternative 11 Accuracy 88.4% Cost 14220
\[\begin{array}{l}
\mathbf{if}\;V \cdot \ell \leq -5 \cdot 10^{+266}:\\
\;\;\;\;c0 \cdot \left(\sqrt{\frac{A}{V}} \cdot {\ell}^{-0.5}\right)\\
\mathbf{elif}\;V \cdot \ell \leq -2 \cdot 10^{-194}:\\
\;\;\;\;\frac{c0}{\frac{\sqrt{V \cdot \left(-\ell\right)}}{\sqrt{-A}}}\\
\mathbf{elif}\;V \cdot \ell \leq 0:\\
\;\;\;\;c0 \cdot \frac{\sqrt{\frac{-1}{V}}}{\sqrt{\frac{\ell}{-A}}}\\
\mathbf{else}:\\
\;\;\;\;\frac{c0}{\sqrt{V \cdot \ell} \cdot \sqrt{\frac{1}{A}}}\\
\end{array}
\]
Alternative 12 Accuracy 87.2% Cost 14156
\[\begin{array}{l}
\mathbf{if}\;V \cdot \ell \leq -5 \cdot 10^{+266}:\\
\;\;\;\;c0 \cdot \left(\sqrt{\frac{A}{V}} \cdot {\ell}^{-0.5}\right)\\
\mathbf{elif}\;V \cdot \ell \leq -1 \cdot 10^{-203}:\\
\;\;\;\;\sqrt{-A} \cdot \frac{c0}{\sqrt{V \cdot \left(-\ell\right)}}\\
\mathbf{elif}\;V \cdot \ell \leq 0:\\
\;\;\;\;c0 \cdot \frac{\sqrt{\frac{A}{-\ell}}}{\sqrt{-V}}\\
\mathbf{else}:\\
\;\;\;\;c0 \cdot \frac{\sqrt{A}}{\sqrt{V \cdot \ell}}\\
\end{array}
\]
Alternative 13 Accuracy 87.2% Cost 14156
\[\begin{array}{l}
\mathbf{if}\;V \cdot \ell \leq -5 \cdot 10^{+266}:\\
\;\;\;\;c0 \cdot \left(\sqrt{\frac{A}{V}} \cdot {\ell}^{-0.5}\right)\\
\mathbf{elif}\;V \cdot \ell \leq -1 \cdot 10^{-203}:\\
\;\;\;\;\sqrt{-A} \cdot \frac{c0}{\sqrt{V \cdot \left(-\ell\right)}}\\
\mathbf{elif}\;V \cdot \ell \leq 0:\\
\;\;\;\;c0 \cdot \frac{\sqrt{\frac{A}{-\ell}}}{\sqrt{-V}}\\
\mathbf{else}:\\
\;\;\;\;\frac{c0}{\sqrt{V \cdot \ell} \cdot \sqrt{\frac{1}{A}}}\\
\end{array}
\]
Alternative 14 Accuracy 88.3% Cost 14156
\[\begin{array}{l}
\mathbf{if}\;V \cdot \ell \leq -5 \cdot 10^{+266}:\\
\;\;\;\;c0 \cdot \left(\sqrt{\frac{A}{V}} \cdot {\ell}^{-0.5}\right)\\
\mathbf{elif}\;V \cdot \ell \leq -1 \cdot 10^{-203}:\\
\;\;\;\;\frac{c0}{\frac{\sqrt{V \cdot \left(-\ell\right)}}{\sqrt{-A}}}\\
\mathbf{elif}\;V \cdot \ell \leq 0:\\
\;\;\;\;c0 \cdot \frac{\sqrt{\frac{A}{-\ell}}}{\sqrt{-V}}\\
\mathbf{else}:\\
\;\;\;\;\frac{c0}{\sqrt{V \cdot \ell} \cdot \sqrt{\frac{1}{A}}}\\
\end{array}
\]
Alternative 15 Accuracy 85.1% Cost 14092
\[\begin{array}{l}
t_0 := \sqrt{\frac{A}{V}}\\
\mathbf{if}\;V \cdot \ell \leq -5 \cdot 10^{+105}:\\
\;\;\;\;\frac{c0 \cdot t_0}{\sqrt{\ell}}\\
\mathbf{elif}\;V \cdot \ell \leq -5 \cdot 10^{-138}:\\
\;\;\;\;\frac{c0}{\sqrt{\frac{\frac{\ell}{\frac{1}{V}}}{A}}}\\
\mathbf{elif}\;V \cdot \ell \leq 0:\\
\;\;\;\;c0 \cdot \left(t_0 \cdot {\ell}^{-0.5}\right)\\
\mathbf{else}:\\
\;\;\;\;c0 \cdot \frac{\sqrt{A}}{\sqrt{V \cdot \ell}}\\
\end{array}
\]
Alternative 16 Accuracy 81.2% Cost 14028
\[\begin{array}{l}
\mathbf{if}\;V \cdot \ell \leq -5 \cdot 10^{+266}:\\
\;\;\;\;c0 \cdot \sqrt{\frac{A}{V} \cdot \frac{1}{\ell}}\\
\mathbf{elif}\;V \cdot \ell \leq -2 \cdot 10^{-129}:\\
\;\;\;\;\frac{c0}{\sqrt{\frac{\frac{\ell}{\frac{1}{V}}}{A}}}\\
\mathbf{elif}\;V \cdot \ell \leq 0:\\
\;\;\;\;c0 \cdot {\left(\ell \cdot \frac{V}{A}\right)}^{-0.5}\\
\mathbf{else}:\\
\;\;\;\;c0 \cdot \frac{\sqrt{A}}{\sqrt{V \cdot \ell}}\\
\end{array}
\]
Alternative 17 Accuracy 85.5% Cost 14028
\[\begin{array}{l}
t_0 := c0 \cdot \frac{\sqrt{\frac{A}{V}}}{\sqrt{\ell}}\\
\mathbf{if}\;V \cdot \ell \leq -5 \cdot 10^{+105}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;V \cdot \ell \leq -5 \cdot 10^{-168}:\\
\;\;\;\;\frac{c0}{\sqrt{\frac{\frac{\ell}{\frac{1}{V}}}{A}}}\\
\mathbf{elif}\;V \cdot \ell \leq 0:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;c0 \cdot \frac{\sqrt{A}}{\sqrt{V \cdot \ell}}\\
\end{array}
\]
Alternative 18 Accuracy 85.5% Cost 14028
\[\begin{array}{l}
t_0 := \sqrt{\frac{A}{V}}\\
\mathbf{if}\;V \cdot \ell \leq -5 \cdot 10^{+105}:\\
\;\;\;\;c0 \cdot \frac{t_0}{\sqrt{\ell}}\\
\mathbf{elif}\;V \cdot \ell \leq -5 \cdot 10^{-168}:\\
\;\;\;\;\frac{c0}{\sqrt{\frac{\frac{\ell}{\frac{1}{V}}}{A}}}\\
\mathbf{elif}\;V \cdot \ell \leq 0:\\
\;\;\;\;\frac{c0}{\frac{\sqrt{\ell}}{t_0}}\\
\mathbf{else}:\\
\;\;\;\;c0 \cdot \frac{\sqrt{A}}{\sqrt{V \cdot \ell}}\\
\end{array}
\]
Alternative 19 Accuracy 85.0% Cost 14028
\[\begin{array}{l}
t_0 := \sqrt{\frac{A}{V}}\\
\mathbf{if}\;V \cdot \ell \leq -5 \cdot 10^{+105}:\\
\;\;\;\;\frac{c0 \cdot t_0}{\sqrt{\ell}}\\
\mathbf{elif}\;V \cdot \ell \leq -5 \cdot 10^{-168}:\\
\;\;\;\;\frac{c0}{\sqrt{\frac{\frac{\ell}{\frac{1}{V}}}{A}}}\\
\mathbf{elif}\;V \cdot \ell \leq 0:\\
\;\;\;\;\frac{c0}{\frac{\sqrt{\ell}}{t_0}}\\
\mathbf{else}:\\
\;\;\;\;c0 \cdot \frac{\sqrt{A}}{\sqrt{V \cdot \ell}}\\
\end{array}
\]
Alternative 20 Accuracy 77.1% Cost 7625
\[\begin{array}{l}
t_0 := \frac{A}{V \cdot \ell}\\
\mathbf{if}\;t_0 \leq 2 \cdot 10^{-319} \lor \neg \left(t_0 \leq 5 \cdot 10^{+300}\right):\\
\;\;\;\;c0 \cdot \sqrt{\frac{\frac{A}{\ell}}{V}}\\
\mathbf{else}:\\
\;\;\;\;c0 \cdot \sqrt{t_0}\\
\end{array}
\]
Alternative 21 Accuracy 77.5% Cost 7624
\[\begin{array}{l}
t_0 := \frac{A}{V \cdot \ell}\\
\mathbf{if}\;t_0 \leq 2 \cdot 10^{-319}:\\
\;\;\;\;c0 \cdot \sqrt{\frac{\frac{A}{\ell}}{V}}\\
\mathbf{elif}\;t_0 \leq 2 \cdot 10^{+292}:\\
\;\;\;\;c0 \cdot \sqrt{t_0}\\
\mathbf{else}:\\
\;\;\;\;\frac{c0}{\sqrt{\ell \cdot \frac{V}{A}}}\\
\end{array}
\]
Alternative 22 Accuracy 70.2% Cost 6848
\[c0 \cdot \sqrt{\frac{A}{V \cdot \ell}}
\]