Population Constructor

GeneticSharp

Population Constructor GeneticSharp
Initializes a new instance of the Population class.

Namespace: GeneticSharp.Domain.Populations
Assembly: GeneticSharp.Domain (in GeneticSharp.Domain.dll) Version: 1.0.5010.36434

Syntax

public Population(
	int minSize,
	int maxSize,
	IChromosome adamChromosome
)
public Population(
	int minSize,
	int maxSize,
	IChromosome adamChromosome
)

Parameters

minSize
Type: OnlineSystem Int32
The minimum size (chromosomes).
maxSize
Type: OnlineSystem Int32
The maximum size (chromosomes).
adamChromosome
Type: GeneticSharp.Domain.Chromosomes IChromosome
The original chromosome of all population ;).
See Also