probably fix compile error

This commit is contained in:
jacob1 2015-12-19 02:12:15 -05:00
parent 5ba34021bc
commit d92f356f8d

View File

@ -37,7 +37,7 @@ SmallKBinomialGenerator::SmallKBinomialGenerator(unsigned int n, float p, unsign
float *pdf = new float[maxK];
// initial values, k=0:
float pTerm = std::pow(1.0f-p, n); // the p^k * (1-p)^(n-k) term
float pTerm = std::pow(1.0f-p, static_cast<float>(n)); // the p^k * (1-p)^(n-k) term
unsigned int coeffN = 1, coeffD = 1; // (N / D) evaluates to the same result as the n!/(k!(n-k)!) term
for (unsigned int k=0; k<maxK; k++)
{