예제 #1
0
파일: RngUInt64.cs 프로젝트: ociaw/RandN
        public UInt64 Pcg32()
        {
            UInt64 sum = 0;

            for (Int32 i = 0; i < Iterations; i++)
            {
                sum = unchecked (sum + _pcg32.NextUInt64());
            }
            return(sum);
        }