Encog.MathUtil.LinearCongruentialGenerator.NextLong C# (CSharp) Method

NextLong() public method

The next random number as a long between 0 and MAX_RAND.
public NextLong ( ) : long
return long
        public long NextLong()
        {
            Seed = (Multiplier*Seed + Increment)
                   %Modulus;
            return Seed;
        }