Encog.ML.Genetic.Species.BasicSpecies.Purge C# (CSharp) Method

Purge() public method

Purge all members, increase age by one and count the number of generations with no improvement.
public Purge ( ) : void
return void
        public void Purge()
        {
            _members.Clear();
            _age++;
            _gensNoImprovement++;
            _spawnsRequired = 0;
        }