IChromosome Interface

GeneticSharp

IChromosome Interface GeneticSharp
Defines an interface for a chromosome.
Remarks

In genetic algorithms, a chromosome (also sometimes called a genome) is a set of parameters which define a proposed solution to the problem that the genetic algorithm is trying to solve. The chromosome is often represented as a simple string, although a wide variety of other data structures are also used. Onlinehttp://en.wikipedia.org/wiki/Chromosome_(genetic_algorithm)

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

Syntax

public interface IChromosome : IComparable<IChromosome>
public interface IChromosome : IComparable<IChromosome>
See Also