C# Class Encog.ML.Genetic.GeneticAlgorithm

Inheritance: IMultiThreadable
Afficher le fichier Open project: encog/encog-silverlight-core Class Usage Examples

Méthodes publiques

Méthode 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 méthode

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

Iteration() public abstract méthode

Perform one training iteration.
public abstract Iteration ( ) : void
Résultat void

PerformCalculateScore() public méthode

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.
Résultat void