
(FPCore (t l Om Omc) :precision binary64 (asin (sqrt (/ (- 1.0 (pow (/ Om Omc) 2.0)) (+ 1.0 (* 2.0 (pow (/ t l) 2.0)))))))
double code(double t, double l, double Om, double Omc) {
return asin(sqrt(((1.0 - pow((Om / Omc), 2.0)) / (1.0 + (2.0 * pow((t / l), 2.0))))));
}
real(8) function code(t, l, om, omc)
real(8), intent (in) :: t
real(8), intent (in) :: l
real(8), intent (in) :: om
real(8), intent (in) :: omc
code = asin(sqrt(((1.0d0 - ((om / omc) ** 2.0d0)) / (1.0d0 + (2.0d0 * ((t / l) ** 2.0d0))))))
end function
public static double code(double t, double l, double Om, double Omc) {
return Math.asin(Math.sqrt(((1.0 - Math.pow((Om / Omc), 2.0)) / (1.0 + (2.0 * Math.pow((t / l), 2.0))))));
}
def code(t, l, Om, Omc): return math.asin(math.sqrt(((1.0 - math.pow((Om / Omc), 2.0)) / (1.0 + (2.0 * math.pow((t / l), 2.0))))))
function code(t, l, Om, Omc) return asin(sqrt(Float64(Float64(1.0 - (Float64(Om / Omc) ^ 2.0)) / Float64(1.0 + Float64(2.0 * (Float64(t / l) ^ 2.0)))))) end
function tmp = code(t, l, Om, Omc) tmp = asin(sqrt(((1.0 - ((Om / Omc) ^ 2.0)) / (1.0 + (2.0 * ((t / l) ^ 2.0)))))); end
code[t_, l_, Om_, Omc_] := N[ArcSin[N[Sqrt[N[(N[(1.0 - N[Power[N[(Om / Omc), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision] / N[(1.0 + N[(2.0 * N[Power[N[(t / l), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]], $MachinePrecision]
\begin{array}{l}
\\
\sin^{-1} \left(\sqrt{\frac{1 - {\left(\frac{Om}{Omc}\right)}^{2}}{1 + 2 \cdot {\left(\frac{t}{\ell}\right)}^{2}}}\right)
\end{array}
Sampling outcomes in binary64 precision:
Herbie found 5 alternatives:
| Alternative | Accuracy | Speedup |
|---|
(FPCore (t l Om Omc) :precision binary64 (asin (sqrt (/ (- 1.0 (pow (/ Om Omc) 2.0)) (+ 1.0 (* 2.0 (pow (/ t l) 2.0)))))))
double code(double t, double l, double Om, double Omc) {
return asin(sqrt(((1.0 - pow((Om / Omc), 2.0)) / (1.0 + (2.0 * pow((t / l), 2.0))))));
}
real(8) function code(t, l, om, omc)
real(8), intent (in) :: t
real(8), intent (in) :: l
real(8), intent (in) :: om
real(8), intent (in) :: omc
code = asin(sqrt(((1.0d0 - ((om / omc) ** 2.0d0)) / (1.0d0 + (2.0d0 * ((t / l) ** 2.0d0))))))
end function
public static double code(double t, double l, double Om, double Omc) {
return Math.asin(Math.sqrt(((1.0 - Math.pow((Om / Omc), 2.0)) / (1.0 + (2.0 * Math.pow((t / l), 2.0))))));
}
def code(t, l, Om, Omc): return math.asin(math.sqrt(((1.0 - math.pow((Om / Omc), 2.0)) / (1.0 + (2.0 * math.pow((t / l), 2.0))))))
function code(t, l, Om, Omc) return asin(sqrt(Float64(Float64(1.0 - (Float64(Om / Omc) ^ 2.0)) / Float64(1.0 + Float64(2.0 * (Float64(t / l) ^ 2.0)))))) end
function tmp = code(t, l, Om, Omc) tmp = asin(sqrt(((1.0 - ((Om / Omc) ^ 2.0)) / (1.0 + (2.0 * ((t / l) ^ 2.0)))))); end
code[t_, l_, Om_, Omc_] := N[ArcSin[N[Sqrt[N[(N[(1.0 - N[Power[N[(Om / Omc), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision] / N[(1.0 + N[(2.0 * N[Power[N[(t / l), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]], $MachinePrecision]
\begin{array}{l}
\\
\sin^{-1} \left(\sqrt{\frac{1 - {\left(\frac{Om}{Omc}\right)}^{2}}{1 + 2 \cdot {\left(\frac{t}{\ell}\right)}^{2}}}\right)
\end{array}
l_m = (fabs.f64 l)
t_m = (fabs.f64 t)
(FPCore (t_m l_m Om Omc)
:precision binary64
(if (<= (/ t_m l_m) 1e+152)
(asin
(sqrt
(/
(- 1.0 (pow (/ Om Omc) 2.0))
(- 1.0 (* 2.0 (/ -1.0 (* (/ l_m t_m) (/ l_m t_m))))))))
(asin (/ (* l_m (sqrt (fma (/ Om (* Omc Omc)) (* Om -0.5) 0.5))) t_m))))l_m = fabs(l);
t_m = fabs(t);
double code(double t_m, double l_m, double Om, double Omc) {
double tmp;
if ((t_m / l_m) <= 1e+152) {
tmp = asin(sqrt(((1.0 - pow((Om / Omc), 2.0)) / (1.0 - (2.0 * (-1.0 / ((l_m / t_m) * (l_m / t_m))))))));
} else {
tmp = asin(((l_m * sqrt(fma((Om / (Omc * Omc)), (Om * -0.5), 0.5))) / t_m));
}
return tmp;
}
l_m = abs(l) t_m = abs(t) function code(t_m, l_m, Om, Omc) tmp = 0.0 if (Float64(t_m / l_m) <= 1e+152) tmp = asin(sqrt(Float64(Float64(1.0 - (Float64(Om / Omc) ^ 2.0)) / Float64(1.0 - Float64(2.0 * Float64(-1.0 / Float64(Float64(l_m / t_m) * Float64(l_m / t_m)))))))); else tmp = asin(Float64(Float64(l_m * sqrt(fma(Float64(Om / Float64(Omc * Omc)), Float64(Om * -0.5), 0.5))) / t_m)); end return tmp end
l_m = N[Abs[l], $MachinePrecision] t_m = N[Abs[t], $MachinePrecision] code[t$95$m_, l$95$m_, Om_, Omc_] := If[LessEqual[N[(t$95$m / l$95$m), $MachinePrecision], 1e+152], N[ArcSin[N[Sqrt[N[(N[(1.0 - N[Power[N[(Om / Omc), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision] / N[(1.0 - N[(2.0 * N[(-1.0 / N[(N[(l$95$m / t$95$m), $MachinePrecision] * N[(l$95$m / t$95$m), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]], $MachinePrecision], N[ArcSin[N[(N[(l$95$m * N[Sqrt[N[(N[(Om / N[(Omc * Omc), $MachinePrecision]), $MachinePrecision] * N[(Om * -0.5), $MachinePrecision] + 0.5), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] / t$95$m), $MachinePrecision]], $MachinePrecision]]
\begin{array}{l}
l_m = \left|\ell\right|
\\
t_m = \left|t\right|
\\
\begin{array}{l}
\mathbf{if}\;\frac{t\_m}{l\_m} \leq 10^{+152}:\\
\;\;\;\;\sin^{-1} \left(\sqrt{\frac{1 - {\left(\frac{Om}{Omc}\right)}^{2}}{1 - 2 \cdot \frac{-1}{\frac{l\_m}{t\_m} \cdot \frac{l\_m}{t\_m}}}}\right)\\
\mathbf{else}:\\
\;\;\;\;\sin^{-1} \left(\frac{l\_m \cdot \sqrt{\mathsf{fma}\left(\frac{Om}{Omc \cdot Omc}, Om \cdot -0.5, 0.5\right)}}{t\_m}\right)\\
\end{array}
\end{array}
if (/.f64 t l) < 1e152Initial program 90.6%
lift-/.f64N/A
unpow2N/A
lift-/.f64N/A
clear-numN/A
un-div-invN/A
lift-/.f64N/A
clear-numN/A
frac-2negN/A
metadata-evalN/A
associate-/l/N/A
lower-/.f64N/A
lower-*.f64N/A
lower-/.f64N/A
distribute-neg-frac2N/A
lower-/.f64N/A
lower-neg.f6490.6
Applied rewrites90.6%
if 1e152 < (/.f64 t l) Initial program 49.5%
Applied rewrites49.5%
times-fracN/A
lift-/.f64N/A
lift-/.f64N/A
lower-*.f6449.5
Applied rewrites49.5%
Taylor expanded in t around inf
associate-*r/N/A
lower-/.f64N/A
*-commutativeN/A
associate-*r*N/A
lower-*.f64N/A
sub-negN/A
metadata-evalN/A
distribute-rgt-inN/A
metadata-evalN/A
lower-fma.f64N/A
lower-/.f64N/A
unpow2N/A
lower-*.f64N/A
unpow2N/A
lower-*.f64N/A
unpow2N/A
lower-*.f64N/A
unpow2N/A
lower-*.f6448.4
Applied rewrites48.4%
lift-*.f64N/A
lift-*.f64N/A
lift-/.f64N/A
lift-fma.f64N/A
lift-*.f64N/A
lift-*.f64N/A
lift-*.f64N/A
sqrt-divN/A
lift-*.f64N/A
sqrt-prodN/A
rem-square-sqrtN/A
lower-/.f64N/A
Applied rewrites99.7%
Final simplification92.0%
l_m = (fabs.f64 l)
t_m = (fabs.f64 t)
(FPCore (t_m l_m Om Omc)
:precision binary64
(if (<= (/ t_m l_m) 5000000000000.0)
(asin
(sqrt
(/
(- 1.0 (pow (/ Om Omc) 2.0))
(fma (* t_m 2.0) (/ (/ t_m l_m) l_m) 1.0))))
(asin (* l_m (/ (sqrt 0.5) t_m)))))l_m = fabs(l);
t_m = fabs(t);
double code(double t_m, double l_m, double Om, double Omc) {
double tmp;
if ((t_m / l_m) <= 5000000000000.0) {
tmp = asin(sqrt(((1.0 - pow((Om / Omc), 2.0)) / fma((t_m * 2.0), ((t_m / l_m) / l_m), 1.0))));
} else {
tmp = asin((l_m * (sqrt(0.5) / t_m)));
}
return tmp;
}
l_m = abs(l) t_m = abs(t) function code(t_m, l_m, Om, Omc) tmp = 0.0 if (Float64(t_m / l_m) <= 5000000000000.0) tmp = asin(sqrt(Float64(Float64(1.0 - (Float64(Om / Omc) ^ 2.0)) / fma(Float64(t_m * 2.0), Float64(Float64(t_m / l_m) / l_m), 1.0)))); else tmp = asin(Float64(l_m * Float64(sqrt(0.5) / t_m))); end return tmp end
l_m = N[Abs[l], $MachinePrecision] t_m = N[Abs[t], $MachinePrecision] code[t$95$m_, l$95$m_, Om_, Omc_] := If[LessEqual[N[(t$95$m / l$95$m), $MachinePrecision], 5000000000000.0], N[ArcSin[N[Sqrt[N[(N[(1.0 - N[Power[N[(Om / Omc), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision] / N[(N[(t$95$m * 2.0), $MachinePrecision] * N[(N[(t$95$m / l$95$m), $MachinePrecision] / l$95$m), $MachinePrecision] + 1.0), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]], $MachinePrecision], N[ArcSin[N[(l$95$m * N[(N[Sqrt[0.5], $MachinePrecision] / t$95$m), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]]
\begin{array}{l}
l_m = \left|\ell\right|
\\
t_m = \left|t\right|
\\
\begin{array}{l}
\mathbf{if}\;\frac{t\_m}{l\_m} \leq 5000000000000:\\
\;\;\;\;\sin^{-1} \left(\sqrt{\frac{1 - {\left(\frac{Om}{Omc}\right)}^{2}}{\mathsf{fma}\left(t\_m \cdot 2, \frac{\frac{t\_m}{l\_m}}{l\_m}, 1\right)}}\right)\\
\mathbf{else}:\\
\;\;\;\;\sin^{-1} \left(l\_m \cdot \frac{\sqrt{0.5}}{t\_m}\right)\\
\end{array}
\end{array}
if (/.f64 t l) < 5e12Initial program 89.4%
lift-/.f64N/A
lift-pow.f64N/A
lift-*.f64N/A
*-rgt-identityN/A
*-rgt-identityN/A
+-commutativeN/A
lift-*.f64N/A
lift-pow.f64N/A
unpow2N/A
lift-/.f64N/A
div-invN/A
associate-*l*N/A
associate-*r*N/A
lower-fma.f64N/A
lower-*.f64N/A
lift-/.f64N/A
associate-*r/N/A
associate-/r/N/A
clear-numN/A
lift-/.f64N/A
lower-/.f6487.0
Applied rewrites87.0%
if 5e12 < (/.f64 t l) Initial program 69.8%
Taylor expanded in l around 0
Applied rewrites76.3%
Taylor expanded in Om around 0
lower-fma.f64N/A
lower-/.f64N/A
unpow2N/A
lower-*.f64N/A
*-commutativeN/A
lower-*.f64N/A
lower-sqrt.f64N/A
cube-multN/A
unpow2N/A
lower-*.f64N/A
unpow2N/A
lower-*.f64N/A
lower-/.f64N/A
lower-sqrt.f6484.0
Applied rewrites84.0%
Taylor expanded in l around 0
associate-/l*N/A
lower-*.f64N/A
lower-/.f64N/A
lower-sqrt.f6499.5
Applied rewrites99.5%
Final simplification90.1%
l_m = (fabs.f64 l) t_m = (fabs.f64 t) (FPCore (t_m l_m Om Omc) :precision binary64 (if (<= (/ t_m l_m) 0.2) (asin (sqrt (fma (/ Om Omc) (- (/ Om Omc)) 1.0))) (asin (* l_m (/ (sqrt 0.5) t_m)))))
l_m = fabs(l);
t_m = fabs(t);
double code(double t_m, double l_m, double Om, double Omc) {
double tmp;
if ((t_m / l_m) <= 0.2) {
tmp = asin(sqrt(fma((Om / Omc), -(Om / Omc), 1.0)));
} else {
tmp = asin((l_m * (sqrt(0.5) / t_m)));
}
return tmp;
}
l_m = abs(l) t_m = abs(t) function code(t_m, l_m, Om, Omc) tmp = 0.0 if (Float64(t_m / l_m) <= 0.2) tmp = asin(sqrt(fma(Float64(Om / Omc), Float64(-Float64(Om / Omc)), 1.0))); else tmp = asin(Float64(l_m * Float64(sqrt(0.5) / t_m))); end return tmp end
l_m = N[Abs[l], $MachinePrecision] t_m = N[Abs[t], $MachinePrecision] code[t$95$m_, l$95$m_, Om_, Omc_] := If[LessEqual[N[(t$95$m / l$95$m), $MachinePrecision], 0.2], N[ArcSin[N[Sqrt[N[(N[(Om / Omc), $MachinePrecision] * (-N[(Om / Omc), $MachinePrecision]) + 1.0), $MachinePrecision]], $MachinePrecision]], $MachinePrecision], N[ArcSin[N[(l$95$m * N[(N[Sqrt[0.5], $MachinePrecision] / t$95$m), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]]
\begin{array}{l}
l_m = \left|\ell\right|
\\
t_m = \left|t\right|
\\
\begin{array}{l}
\mathbf{if}\;\frac{t\_m}{l\_m} \leq 0.2:\\
\;\;\;\;\sin^{-1} \left(\sqrt{\mathsf{fma}\left(\frac{Om}{Omc}, -\frac{Om}{Omc}, 1\right)}\right)\\
\mathbf{else}:\\
\;\;\;\;\sin^{-1} \left(l\_m \cdot \frac{\sqrt{0.5}}{t\_m}\right)\\
\end{array}
\end{array}
if (/.f64 t l) < 0.20000000000000001Initial program 89.2%
Taylor expanded in t around 0
lower--.f64N/A
lower-/.f64N/A
unpow2N/A
lower-*.f64N/A
unpow2N/A
lower-*.f6455.1
Applied rewrites55.1%
times-fracN/A
lift-/.f64N/A
lift-/.f64N/A
unpow2N/A
lift-pow.f64N/A
sub-negN/A
+-commutativeN/A
lift-pow.f64N/A
unpow2N/A
distribute-rgt-neg-inN/A
lower-fma.f64N/A
lower-neg.f6463.8
Applied rewrites63.8%
if 0.20000000000000001 < (/.f64 t l) Initial program 71.1%
Taylor expanded in l around 0
Applied rewrites74.3%
Taylor expanded in Om around 0
lower-fma.f64N/A
lower-/.f64N/A
unpow2N/A
lower-*.f64N/A
*-commutativeN/A
lower-*.f64N/A
lower-sqrt.f64N/A
cube-multN/A
unpow2N/A
lower-*.f64N/A
unpow2N/A
lower-*.f64N/A
lower-/.f64N/A
lower-sqrt.f6481.7
Applied rewrites81.7%
Taylor expanded in l around 0
associate-/l*N/A
lower-*.f64N/A
lower-/.f64N/A
lower-sqrt.f6498.6
Applied rewrites98.6%
l_m = (fabs.f64 l) t_m = (fabs.f64 t) (FPCore (t_m l_m Om Omc) :precision binary64 (if (<= (/ t_m l_m) 0.2) (asin 1.0) (asin (* l_m (/ (sqrt 0.5) t_m)))))
l_m = fabs(l);
t_m = fabs(t);
double code(double t_m, double l_m, double Om, double Omc) {
double tmp;
if ((t_m / l_m) <= 0.2) {
tmp = asin(1.0);
} else {
tmp = asin((l_m * (sqrt(0.5) / t_m)));
}
return tmp;
}
l_m = abs(l)
t_m = abs(t)
real(8) function code(t_m, l_m, om, omc)
real(8), intent (in) :: t_m
real(8), intent (in) :: l_m
real(8), intent (in) :: om
real(8), intent (in) :: omc
real(8) :: tmp
if ((t_m / l_m) <= 0.2d0) then
tmp = asin(1.0d0)
else
tmp = asin((l_m * (sqrt(0.5d0) / t_m)))
end if
code = tmp
end function
l_m = Math.abs(l);
t_m = Math.abs(t);
public static double code(double t_m, double l_m, double Om, double Omc) {
double tmp;
if ((t_m / l_m) <= 0.2) {
tmp = Math.asin(1.0);
} else {
tmp = Math.asin((l_m * (Math.sqrt(0.5) / t_m)));
}
return tmp;
}
l_m = math.fabs(l) t_m = math.fabs(t) def code(t_m, l_m, Om, Omc): tmp = 0 if (t_m / l_m) <= 0.2: tmp = math.asin(1.0) else: tmp = math.asin((l_m * (math.sqrt(0.5) / t_m))) return tmp
l_m = abs(l) t_m = abs(t) function code(t_m, l_m, Om, Omc) tmp = 0.0 if (Float64(t_m / l_m) <= 0.2) tmp = asin(1.0); else tmp = asin(Float64(l_m * Float64(sqrt(0.5) / t_m))); end return tmp end
l_m = abs(l); t_m = abs(t); function tmp_2 = code(t_m, l_m, Om, Omc) tmp = 0.0; if ((t_m / l_m) <= 0.2) tmp = asin(1.0); else tmp = asin((l_m * (sqrt(0.5) / t_m))); end tmp_2 = tmp; end
l_m = N[Abs[l], $MachinePrecision] t_m = N[Abs[t], $MachinePrecision] code[t$95$m_, l$95$m_, Om_, Omc_] := If[LessEqual[N[(t$95$m / l$95$m), $MachinePrecision], 0.2], N[ArcSin[1.0], $MachinePrecision], N[ArcSin[N[(l$95$m * N[(N[Sqrt[0.5], $MachinePrecision] / t$95$m), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]]
\begin{array}{l}
l_m = \left|\ell\right|
\\
t_m = \left|t\right|
\\
\begin{array}{l}
\mathbf{if}\;\frac{t\_m}{l\_m} \leq 0.2:\\
\;\;\;\;\sin^{-1} 1\\
\mathbf{else}:\\
\;\;\;\;\sin^{-1} \left(l\_m \cdot \frac{\sqrt{0.5}}{t\_m}\right)\\
\end{array}
\end{array}
if (/.f64 t l) < 0.20000000000000001Initial program 89.2%
Taylor expanded in t around 0
lower--.f64N/A
lower-/.f64N/A
unpow2N/A
lower-*.f64N/A
unpow2N/A
lower-*.f6455.1
Applied rewrites55.1%
Taylor expanded in Om around 0
Applied rewrites63.4%
if 0.20000000000000001 < (/.f64 t l) Initial program 71.1%
Taylor expanded in l around 0
Applied rewrites74.3%
Taylor expanded in Om around 0
lower-fma.f64N/A
lower-/.f64N/A
unpow2N/A
lower-*.f64N/A
*-commutativeN/A
lower-*.f64N/A
lower-sqrt.f64N/A
cube-multN/A
unpow2N/A
lower-*.f64N/A
unpow2N/A
lower-*.f64N/A
lower-/.f64N/A
lower-sqrt.f6481.7
Applied rewrites81.7%
Taylor expanded in l around 0
associate-/l*N/A
lower-*.f64N/A
lower-/.f64N/A
lower-sqrt.f6498.6
Applied rewrites98.6%
l_m = (fabs.f64 l) t_m = (fabs.f64 t) (FPCore (t_m l_m Om Omc) :precision binary64 (asin 1.0))
l_m = fabs(l);
t_m = fabs(t);
double code(double t_m, double l_m, double Om, double Omc) {
return asin(1.0);
}
l_m = abs(l)
t_m = abs(t)
real(8) function code(t_m, l_m, om, omc)
real(8), intent (in) :: t_m
real(8), intent (in) :: l_m
real(8), intent (in) :: om
real(8), intent (in) :: omc
code = asin(1.0d0)
end function
l_m = Math.abs(l);
t_m = Math.abs(t);
public static double code(double t_m, double l_m, double Om, double Omc) {
return Math.asin(1.0);
}
l_m = math.fabs(l) t_m = math.fabs(t) def code(t_m, l_m, Om, Omc): return math.asin(1.0)
l_m = abs(l) t_m = abs(t) function code(t_m, l_m, Om, Omc) return asin(1.0) end
l_m = abs(l); t_m = abs(t); function tmp = code(t_m, l_m, Om, Omc) tmp = asin(1.0); end
l_m = N[Abs[l], $MachinePrecision] t_m = N[Abs[t], $MachinePrecision] code[t$95$m_, l$95$m_, Om_, Omc_] := N[ArcSin[1.0], $MachinePrecision]
\begin{array}{l}
l_m = \left|\ell\right|
\\
t_m = \left|t\right|
\\
\sin^{-1} 1
\end{array}
Initial program 84.5%
Taylor expanded in t around 0
lower--.f64N/A
lower-/.f64N/A
unpow2N/A
lower-*.f64N/A
unpow2N/A
lower-*.f6441.9
Applied rewrites41.9%
Taylor expanded in Om around 0
Applied rewrites48.1%
herbie shell --seed 2024216
(FPCore (t l Om Omc)
:name "Toniolo and Linder, Equation (2)"
:precision binary64
(asin (sqrt (/ (- 1.0 (pow (/ Om Omc) 2.0)) (+ 1.0 (* 2.0 (pow (/ t l) 2.0)))))))