C# 클래스 Encog.Solve.Genetic.GeneticAlgorithm

Implements a genetic algorithm. This is an abstract class. Other classes are provided by Encog use this base class to train neural networks or provide an answer to the traveling salesman problem. The genetic algorithm is also capable of using a thread pool to speed execution.
파일 보기 프로젝트 열기: encog/encog-silverlight-core

공개 메소드들

메소드 설명
AddSpeciesMember ( ISpecies species, IGenome genome ) : void

Add a genome to a species.

Iteration ( ) : void

Perform one generation.

PerformScoreCalculation ( IGenome g ) : void

Perform a score calculation for the specified genome.

메소드 상세

AddSpeciesMember() 공개 메소드

Add a genome to a species.
public AddSpeciesMember ( ISpecies species, IGenome genome ) : void
species ISpecies Tge soecues to add to.
genome IGenome The genome to add.
리턴 void

Iteration() 공개 메소드

Perform one generation.
public Iteration ( ) : void
리턴 void

PerformScoreCalculation() 공개 메소드

Perform a score calculation for the specified genome.
public PerformScoreCalculation ( IGenome g ) : void
g IGenome The genome to calculate for.
리턴 void