\[ \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 -1 \cdot 10^{+270}:\\
\;\;\;\;c0 \cdot \frac{\sqrt{\frac{A}{-\ell}}}{\sqrt{-V}}\\
\mathbf{elif}\;V \cdot \ell \leq -5 \cdot 10^{-303}:\\
\;\;\;\;\sqrt{-A} \cdot \frac{c0}{\sqrt{V \cdot \left(-\ell\right)}}\\
\mathbf{elif}\;V \cdot \ell \leq 5 \cdot 10^{-312}:\\
\;\;\;\;\frac{c0 \cdot \sqrt{\frac{A}{V}}}{\sqrt{\ell}}\\
\mathbf{elif}\;V \cdot \ell \leq 10^{+249}:\\
\;\;\;\;c0 \cdot \frac{\sqrt{A}}{\sqrt{V \cdot \ell}}\\
\mathbf{else}:\\
\;\;\;\;c0 \cdot \sqrt{\frac{\frac{A}{\ell}}{V}}\\
\end{array}
\]
(FPCore (c0 A V l) :precision binary64 (* c0 (sqrt (/ A (* V l))))) ↓
(FPCore (c0 A V l)
:precision binary64
(if (<= (* V l) -1e+270)
(* c0 (/ (sqrt (/ A (- l))) (sqrt (- V))))
(if (<= (* V l) -5e-303)
(* (sqrt (- A)) (/ c0 (sqrt (* V (- l)))))
(if (<= (* V l) 5e-312)
(/ (* c0 (sqrt (/ A V))) (sqrt l))
(if (<= (* V l) 1e+249)
(* c0 (/ (sqrt A) (sqrt (* V l))))
(* c0 (sqrt (/ (/ A l) V)))))))) 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) <= -1e+270) {
tmp = c0 * (sqrt((A / -l)) / sqrt(-V));
} else if ((V * l) <= -5e-303) {
tmp = sqrt(-A) * (c0 / sqrt((V * -l)));
} else if ((V * l) <= 5e-312) {
tmp = (c0 * sqrt((A / V))) / sqrt(l);
} else if ((V * l) <= 1e+249) {
tmp = c0 * (sqrt(A) / sqrt((V * l)));
} else {
tmp = c0 * sqrt(((A / l) / V));
}
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) <= (-1d+270)) then
tmp = c0 * (sqrt((a / -l)) / sqrt(-v))
else if ((v * l) <= (-5d-303)) then
tmp = sqrt(-a) * (c0 / sqrt((v * -l)))
else if ((v * l) <= 5d-312) then
tmp = (c0 * sqrt((a / v))) / sqrt(l)
else if ((v * l) <= 1d+249) then
tmp = c0 * (sqrt(a) / sqrt((v * l)))
else
tmp = c0 * sqrt(((a / l) / v))
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) <= -1e+270) {
tmp = c0 * (Math.sqrt((A / -l)) / Math.sqrt(-V));
} else if ((V * l) <= -5e-303) {
tmp = Math.sqrt(-A) * (c0 / Math.sqrt((V * -l)));
} else if ((V * l) <= 5e-312) {
tmp = (c0 * Math.sqrt((A / V))) / Math.sqrt(l);
} else if ((V * l) <= 1e+249) {
tmp = c0 * (Math.sqrt(A) / Math.sqrt((V * l)));
} else {
tmp = c0 * Math.sqrt(((A / l) / V));
}
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) <= -1e+270:
tmp = c0 * (math.sqrt((A / -l)) / math.sqrt(-V))
elif (V * l) <= -5e-303:
tmp = math.sqrt(-A) * (c0 / math.sqrt((V * -l)))
elif (V * l) <= 5e-312:
tmp = (c0 * math.sqrt((A / V))) / math.sqrt(l)
elif (V * l) <= 1e+249:
tmp = c0 * (math.sqrt(A) / math.sqrt((V * l)))
else:
tmp = c0 * math.sqrt(((A / l) / V))
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) <= -1e+270)
tmp = Float64(c0 * Float64(sqrt(Float64(A / Float64(-l))) / sqrt(Float64(-V))));
elseif (Float64(V * l) <= -5e-303)
tmp = Float64(sqrt(Float64(-A)) * Float64(c0 / sqrt(Float64(V * Float64(-l)))));
elseif (Float64(V * l) <= 5e-312)
tmp = Float64(Float64(c0 * sqrt(Float64(A / V))) / sqrt(l));
elseif (Float64(V * l) <= 1e+249)
tmp = Float64(c0 * Float64(sqrt(A) / sqrt(Float64(V * l))));
else
tmp = Float64(c0 * sqrt(Float64(Float64(A / l) / V)));
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) <= -1e+270)
tmp = c0 * (sqrt((A / -l)) / sqrt(-V));
elseif ((V * l) <= -5e-303)
tmp = sqrt(-A) * (c0 / sqrt((V * -l)));
elseif ((V * l) <= 5e-312)
tmp = (c0 * sqrt((A / V))) / sqrt(l);
elseif ((V * l) <= 1e+249)
tmp = c0 * (sqrt(A) / sqrt((V * l)));
else
tmp = c0 * sqrt(((A / l) / V));
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], -1e+270], N[(c0 * N[(N[Sqrt[N[(A / (-l)), $MachinePrecision]], $MachinePrecision] / N[Sqrt[(-V)], $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[N[(V * l), $MachinePrecision], -5e-303], N[(N[Sqrt[(-A)], $MachinePrecision] * N[(c0 / N[Sqrt[N[(V * (-l)), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[N[(V * l), $MachinePrecision], 5e-312], N[(N[(c0 * N[Sqrt[N[(A / V), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] / N[Sqrt[l], $MachinePrecision]), $MachinePrecision], If[LessEqual[N[(V * l), $MachinePrecision], 1e+249], N[(c0 * N[(N[Sqrt[A], $MachinePrecision] / N[Sqrt[N[(V * l), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(c0 * N[Sqrt[N[(N[(A / l), $MachinePrecision] / V), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]]]]]
c0 \cdot \sqrt{\frac{A}{V \cdot \ell}}
↓
\begin{array}{l}
\mathbf{if}\;V \cdot \ell \leq -1 \cdot 10^{+270}:\\
\;\;\;\;c0 \cdot \frac{\sqrt{\frac{A}{-\ell}}}{\sqrt{-V}}\\
\mathbf{elif}\;V \cdot \ell \leq -5 \cdot 10^{-303}:\\
\;\;\;\;\sqrt{-A} \cdot \frac{c0}{\sqrt{V \cdot \left(-\ell\right)}}\\
\mathbf{elif}\;V \cdot \ell \leq 5 \cdot 10^{-312}:\\
\;\;\;\;\frac{c0 \cdot \sqrt{\frac{A}{V}}}{\sqrt{\ell}}\\
\mathbf{elif}\;V \cdot \ell \leq 10^{+249}:\\
\;\;\;\;c0 \cdot \frac{\sqrt{A}}{\sqrt{V \cdot \ell}}\\
\mathbf{else}:\\
\;\;\;\;c0 \cdot \sqrt{\frac{\frac{A}{\ell}}{V}}\\
\end{array}
Alternatives Alternative 1 Error 8.0 Cost 20044
\[\begin{array}{l}
t_0 := \sqrt{V \cdot \ell}\\
\mathbf{if}\;A \leq -5 \cdot 10^{-311}:\\
\;\;\;\;\frac{c0}{\frac{\sqrt{-V}}{\frac{\sqrt{-A}}{\sqrt{\ell}}}}\\
\mathbf{elif}\;A \leq 3.4 \cdot 10^{+142}:\\
\;\;\;\;c0 \cdot \frac{\sqrt{A}}{t_0}\\
\mathbf{elif}\;A \leq 1.95 \cdot 10^{+207}:\\
\;\;\;\;\frac{\frac{c0 \cdot \sqrt{A}}{\sqrt{\ell}}}{\sqrt{V}}\\
\mathbf{else}:\\
\;\;\;\;\frac{\sqrt{A}}{\frac{t_0}{c0}}\\
\end{array}
\]
Alternative 2 Error 12.5 Cost 14288
\[\begin{array}{l}
\mathbf{if}\;V \cdot \ell \leq -1 \cdot 10^{+204}:\\
\;\;\;\;c0 \cdot \sqrt{\frac{\frac{A}{V}}{\ell}}\\
\mathbf{elif}\;V \cdot \ell \leq -2 \cdot 10^{-313}:\\
\;\;\;\;\frac{c0}{\sqrt{\frac{V \cdot \ell}{A}}}\\
\mathbf{elif}\;V \cdot \ell \leq 5 \cdot 10^{-312}:\\
\;\;\;\;\frac{c0}{\frac{\sqrt{V}}{\sqrt{\frac{A}{\ell}}}}\\
\mathbf{elif}\;V \cdot \ell \leq 10^{+249}:\\
\;\;\;\;c0 \cdot \frac{\sqrt{A}}{\sqrt{V \cdot \ell}}\\
\mathbf{else}:\\
\;\;\;\;c0 \cdot \sqrt{\frac{\frac{A}{\ell}}{V}}\\
\end{array}
\]
Alternative 3 Error 9.1 Cost 14288
\[\begin{array}{l}
t_0 := \frac{c0}{\frac{\sqrt{\ell}}{\sqrt{\frac{A}{V}}}}\\
\mathbf{if}\;V \cdot \ell \leq -1 \cdot 10^{+204}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;V \cdot \ell \leq -1 \cdot 10^{-37}:\\
\;\;\;\;\frac{c0}{\sqrt{\frac{V \cdot \ell}{A}}}\\
\mathbf{elif}\;V \cdot \ell \leq 5 \cdot 10^{-312}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;V \cdot \ell \leq 10^{+249}:\\
\;\;\;\;c0 \cdot \frac{\sqrt{A}}{\sqrt{V \cdot \ell}}\\
\mathbf{else}:\\
\;\;\;\;c0 \cdot \sqrt{\frac{\frac{A}{\ell}}{V}}\\
\end{array}
\]
Alternative 4 Error 9.2 Cost 14288
\[\begin{array}{l}
t_0 := \sqrt{\frac{A}{V}}\\
\mathbf{if}\;V \cdot \ell \leq -1 \cdot 10^{+204}:\\
\;\;\;\;\frac{c0 \cdot t_0}{\sqrt{\ell}}\\
\mathbf{elif}\;V \cdot \ell \leq -1 \cdot 10^{-37}:\\
\;\;\;\;\frac{c0}{\sqrt{\frac{V \cdot \ell}{A}}}\\
\mathbf{elif}\;V \cdot \ell \leq 5 \cdot 10^{-312}:\\
\;\;\;\;\frac{c0}{\frac{\sqrt{\ell}}{t_0}}\\
\mathbf{elif}\;V \cdot \ell \leq 10^{+249}:\\
\;\;\;\;c0 \cdot \frac{\sqrt{A}}{\sqrt{V \cdot \ell}}\\
\mathbf{else}:\\
\;\;\;\;c0 \cdot \sqrt{\frac{\frac{A}{\ell}}{V}}\\
\end{array}
\]
Alternative 5 Error 13.7 Cost 14028
\[\begin{array}{l}
\mathbf{if}\;V \cdot \ell \leq -1 \cdot 10^{+204}:\\
\;\;\;\;c0 \cdot \sqrt{\frac{\frac{A}{V}}{\ell}}\\
\mathbf{elif}\;V \cdot \ell \leq -2 \cdot 10^{-313}:\\
\;\;\;\;\frac{c0}{\sqrt{\frac{V \cdot \ell}{A}}}\\
\mathbf{elif}\;V \cdot \ell \leq 10^{+249}:\\
\;\;\;\;c0 \cdot \frac{\sqrt{A}}{\sqrt{V \cdot \ell}}\\
\mathbf{else}:\\
\;\;\;\;c0 \cdot \sqrt{\frac{\frac{A}{\ell}}{V}}\\
\end{array}
\]
Alternative 6 Error 10.0 Cost 14028
\[\begin{array}{l}
\mathbf{if}\;V \cdot \ell \leq -1 \cdot 10^{-37}:\\
\;\;\;\;c0 \cdot \frac{\sqrt{\frac{A}{-\ell}}}{\sqrt{-V}}\\
\mathbf{elif}\;V \cdot \ell \leq 5 \cdot 10^{-312}:\\
\;\;\;\;\frac{c0}{\frac{\sqrt{\ell}}{\sqrt{\frac{A}{V}}}}\\
\mathbf{elif}\;V \cdot \ell \leq 10^{+249}:\\
\;\;\;\;c0 \cdot \frac{\sqrt{A}}{\sqrt{V \cdot \ell}}\\
\mathbf{else}:\\
\;\;\;\;c0 \cdot \sqrt{\frac{\frac{A}{\ell}}{V}}\\
\end{array}
\]
Alternative 7 Error 15.1 Cost 7752
\[\begin{array}{l}
t_0 := \frac{A}{V \cdot \ell}\\
\mathbf{if}\;t_0 \leq 2 \cdot 10^{-317}:\\
\;\;\;\;c0 \cdot \sqrt{\frac{\frac{A}{V}}{\ell}}\\
\mathbf{elif}\;t_0 \leq 2 \cdot 10^{+291}:\\
\;\;\;\;c0 \cdot \sqrt{t_0}\\
\mathbf{else}:\\
\;\;\;\;\sqrt{\frac{A \cdot c0}{\ell \cdot \frac{V}{c0}}}\\
\end{array}
\]
Alternative 8 Error 14.7 Cost 7752
\[\begin{array}{l}
t_0 := \frac{A}{V \cdot \ell}\\
\mathbf{if}\;t_0 \leq 2 \cdot 10^{-317}:\\
\;\;\;\;c0 \cdot \sqrt{\frac{\frac{A}{V}}{\ell}}\\
\mathbf{elif}\;t_0 \leq 2 \cdot 10^{+304}:\\
\;\;\;\;c0 \cdot \sqrt{t_0}\\
\mathbf{else}:\\
\;\;\;\;\sqrt{\frac{\frac{A \cdot c0}{\frac{V}{c0}}}{\ell}}\\
\end{array}
\]
Alternative 9 Error 14.6 Cost 7624
\[\begin{array}{l}
t_0 := \frac{A}{V \cdot \ell}\\
\mathbf{if}\;t_0 \leq 2 \cdot 10^{-317}:\\
\;\;\;\;c0 \cdot \sqrt{\frac{\frac{A}{V}}{\ell}}\\
\mathbf{elif}\;t_0 \leq 2 \cdot 10^{+304}:\\
\;\;\;\;c0 \cdot \sqrt{t_0}\\
\mathbf{else}:\\
\;\;\;\;\frac{c0}{\sqrt{V \cdot \frac{\ell}{A}}}\\
\end{array}
\]
Alternative 10 Error 14.6 Cost 7624
\[\begin{array}{l}
t_0 := \frac{A}{V \cdot \ell}\\
\mathbf{if}\;t_0 \leq 2 \cdot 10^{-317}:\\
\;\;\;\;c0 \cdot \sqrt{\frac{\frac{A}{V}}{\ell}}\\
\mathbf{elif}\;t_0 \leq 2 \cdot 10^{+304}:\\
\;\;\;\;c0 \cdot \sqrt{t_0}\\
\mathbf{else}:\\
\;\;\;\;\frac{c0}{\sqrt{\ell \cdot \frac{V}{A}}}\\
\end{array}
\]
Alternative 11 Error 14.6 Cost 7624
\[\begin{array}{l}
t_0 := \frac{A}{V \cdot \ell}\\
\mathbf{if}\;t_0 \leq 2 \cdot 10^{-317}:\\
\;\;\;\;c0 \cdot \sqrt{\frac{\frac{A}{V}}{\ell}}\\
\mathbf{elif}\;t_0 \leq 2 \cdot 10^{+304}:\\
\;\;\;\;c0 \cdot \sqrt{t_0}\\
\mathbf{else}:\\
\;\;\;\;\frac{c0}{\sqrt{\frac{\ell}{\frac{A}{V}}}}\\
\end{array}
\]
Alternative 12 Error 17.3 Cost 7369
\[\begin{array}{l}
\mathbf{if}\;V \cdot \ell \leq -5 \cdot 10^{+84} \lor \neg \left(V \cdot \ell \leq 1.5 \cdot 10^{+248}\right):\\
\;\;\;\;c0 \cdot \sqrt{\frac{\frac{A}{\ell}}{V}}\\
\mathbf{else}:\\
\;\;\;\;c0 \cdot \sqrt{\frac{A}{V \cdot \ell}}\\
\end{array}
\]
Alternative 13 Error 16.9 Cost 7368
\[\begin{array}{l}
\mathbf{if}\;V \cdot \ell \leq -1 \cdot 10^{+292}:\\
\;\;\;\;c0 \cdot \sqrt{\frac{\frac{A}{V}}{\ell}}\\
\mathbf{elif}\;V \cdot \ell \leq 1.5 \cdot 10^{+248}:\\
\;\;\;\;c0 \cdot \sqrt{\frac{A}{V \cdot \ell}}\\
\mathbf{else}:\\
\;\;\;\;c0 \cdot \sqrt{\frac{\frac{A}{\ell}}{V}}\\
\end{array}
\]
Alternative 14 Error 16.8 Cost 7236
\[\begin{array}{l}
\mathbf{if}\;\frac{A}{V \cdot \ell} \leq 2 \cdot 10^{-317}:\\
\;\;\;\;c0 \cdot \sqrt{\frac{\frac{A}{V}}{\ell}}\\
\mathbf{else}:\\
\;\;\;\;\frac{c0}{\sqrt{\frac{V \cdot \ell}{A}}}\\
\end{array}
\]
Alternative 15 Error 19.6 Cost 6848
\[c0 \cdot \sqrt{\frac{A}{V \cdot \ell}}
\]