diff --git a/src/Probability.cpp b/src/Probability.cpp index 2df8572fdb..ac5970fc04 100644 --- a/src/Probability.cpp +++ b/src/Probability.cpp @@ -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(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