Initialize an instance of population class with populationSize number of instances of geneType class. The Initialize function is called for every instance of Gene class.
Initializes an empty population. Population does not contain any instances of gene class.
public Population();
Create a shallow copy of the population.
public Population(Gene[]);
Create a shallow copy of the population.
public Population(GeneCollection);
Initialize an instance of population class with populationSize number of instances of geneType class. The Initialize function is called for every instance of Gene class.
public Population(Type,int);
Population Class | AnticipatingMinds.ArtificialMind.GeneticAlgorithms Namespace