C# Class SharpNeat.Genomes.Neat.CorrelationItem

A single comparison item resulting from the comparison of two genomes. If the CorrelationItemType is Match then both connection gene properties will be non-null, otherwise one of them will be null and the other will hold a reference to a disjoint or excess connection gene. Note. We generally only compare connection genes when comparing genomes. Connection genes along with their innovation IDs actually represent the complete network topology (and of course the connection weights).
显示文件 Open project: colgreen/sharpneat

Public Methods

Method Description
CorrelationItem ( CorrelationItemType correlationItemType, ConnectionGene connectionGene1, ConnectionGene connectionGene2 )

Constructs a new CorrelationItem.

Method Details

CorrelationItem() public method

Constructs a new CorrelationItem.
public CorrelationItem ( CorrelationItemType correlationItemType, ConnectionGene connectionGene1, ConnectionGene connectionGene2 )
correlationItemType CorrelationItemType
connectionGene1 ConnectionGene
connectionGene2 ConnectionGene