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

LinearCongruentialGenerator() public method

Construct the default LCG. You need only specify a seed.
public LinearCongruentialGenerator ( long seed ) : System
seed long The seed.
return System
        public LinearCongruentialGenerator(long seed)
            : this((long) Math.Pow(2L, 32L), 1103515245L, 12345L, seed)
        {
        }

Same methods

LinearCongruentialGenerator::LinearCongruentialGenerator ( long modulus, long multiplier, long increment, long seed ) : System