C# Class Encog.Solve.Genetic.MateWorker

Worker that is used to mate the genomes in a multithreaded way.
Inheritance: IEngineTask
Mostrar archivo Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method Description
MateWorker ( IGenome mother, IGenome father, IGenome child1, IGenome child2 ) : System

Create a MateWorker.

Run ( ) : void

Mate the two chromosomes.

Method Details

MateWorker() public method

Create a MateWorker.
public MateWorker ( IGenome mother, IGenome father, IGenome child1, IGenome child2 ) : System
mother IGenome The mother.
father IGenome The father.
child1 IGenome The first child.
child2 IGenome The second child.
return System

Run() public method

Mate the two chromosomes.
public Run ( ) : void
return void