Skip to content
Snippets Groups Projects
Commit 348ae6f4 authored by Kutalmış Berçin's avatar Kutalmış Berçin Committed by Andrew Heather
Browse files

COMP: incGamma: adjustments for int64 (#2100)

parent 9dda3626
Branches
Tags
1 merge request!420BUG: fixing various bugs for v2106
......@@ -255,7 +255,7 @@ Foam::scalar Foam::Math::incGammaRatio_Q(const scalar a, const scalar x)
scalar sum = 0;
for (int n = 1; n <= 10; n++)
for (label n = 1; n <= 10; ++n)
{
sum += pow((-x), n)/((a + n)*factorial(n));
}
......@@ -393,7 +393,7 @@ Foam::scalar Foam::Math::incGammaRatio_Q(const scalar a, const scalar x)
{
scalar sum = 0;
for (int n = 0; n <= (a - 1); n++)
for (label n = 0; n <= (a - 1); ++n)
{
sum += pow(x, n)/factorial(n);
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment