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.
Показать файл Открыть проект

Открытые методы

Метод Описание
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