AForge.Genetic.GEPChromosome.Clone C# (CSharp) Method

Clone() public method

Clone the chromosome.

The method clones the chromosome returning the exact copy of it.

public Clone ( ) : IChromosome
return IChromosome
		public override IChromosome Clone( )
		{
			return new GEPChromosome( this );
		}