-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathBinomFact.cpp
103 lines (96 loc) · 3.12 KB
/
BinomFact.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/* -*- c++ -*-
* Copyright (c) 2012-2023 by the GalSim developers team on GitHub
* https://github.com/GalSim-developers
*
* This file is part of GalSim: The modular galaxy image simulation toolkit.
* https://github.com/GalSim-developers/GalSim
*
* GalSim is free software: redistribution and use in source and binary forms,
* with or without modification, are permitted provided that the following
* conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* list of conditions, and the disclaimer given in the accompanying LICENSE
* file.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions, and the disclaimer given in the documentation
* and/or other materials provided with the distribution.
*/
#include <vector>
#include "BinomFact.h"
#include "Std.h"
namespace galsim {
double fact(int i)
{
assert(i>=0);
static std::vector<double> f(10);
static bool first=true;
if (first) {
f[0] = f[1] = 1.;
for(int j=2;j<10;j++) f[j] = f[j-1]*(double)j;
first = false;
}
if (i>=(int)f.size()) {
for(int j=f.size();j<=i;j++)
f.push_back(f[j-1]*(double)j);
assert(i==(int)f.size()-1);
}
assert(i<(int)f.size());
return f[i];
}
double sqrtfact(int i)
{
static std::vector<double> f(10);
static bool first=true;
if (first) {
f[0] = f[1] = 1.;
for(int j=2;j<10;j++) f[j] = f[j-1]*std::sqrt((double)j);
first = false;
}
if (i>=(int)f.size())
for(int j=f.size();j<=i;j++)
f.push_back(f[j-1]*std::sqrt((double)j));
assert(i<(int)f.size());
return f[i];
}
double binom(int i,int j)
{
static std::vector<std::vector<double> > f(10);
static bool first=true;
if (first) {
f[0] = std::vector<double>(1,1.);
f[1] = std::vector<double>(2,1.);
for(int i1=2;i1<10;i1++) {
f[i1] = std::vector<double>(i1+1);
f[i1][0] = f[i1][i1] = 1.;
for(int j1=1;j1<i1;j1++) f[i1][j1] = f[i1-1][j1-1] + f[i1-1][j1];
}
first = false;
}
if (j<0 || j>i) return 0.;
if (i>=(int)f.size()) {
for(int i1=f.size();i1<=i;i1++) {
f.push_back(std::vector<double>(i1+1,1.));
for(int j1=1;j1<i1;j1++) f[i1][j1] = f[i1-1][j1-1] + f[i1-1][j1];
}
assert(i==(int)f.size()-1);
}
assert(i<(int)f.size());
assert(j<(int)f[i].size());
return f[i][j];
}
double sqrtn(int i)
{
static std::vector<double> f(10);
static bool first=true;
if (first) {
for(int j=0;j<10;j++) f[j] = std::sqrt((double)j);
first = false;
}
if (i>=(int)f.size())
for(int j=f.size();j<=i;j++)
f.push_back(std::sqrt((double)j));
assert(i<(int)f.size());
return f[i];
}
}