C# Class Encog.ML.Genetic.GeneticAlgorithm

Inheritance: IMultiThreadable
Show file Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method Description
AddSpeciesMember ( ISpecies species, IGenome genome ) : void

Add a genome.

Iteration ( ) : void

Perform one training iteration.

PerformCalculateScore ( IGenome g ) : void

Calculate the score for this genome. The genome's score will be set.

Method Details

AddSpeciesMember() public method

Add a genome.
public AddSpeciesMember ( ISpecies species, IGenome genome ) : void
species ISpecies The species to add.
genome IGenome The genome to add.
return void

Iteration() public abstract method

Perform one training iteration.
public abstract Iteration ( ) : void
return void

PerformCalculateScore() public method

Calculate the score for this genome. The genome's score will be set.
public PerformCalculateScore ( IGenome g ) : void
g IGenome The genome to calculate for.
return void