C# 클래스 SharpNeat.Genomes.Neat.ConnectionGene

A gene that represents a single connection between neurons in NEAT.
상속: INetworkConnection
파일 보기 프로젝트 열기: colgreen/sharpneat 1 사용 예제들

공개 메소드들

메소드 설명
ConnectionGene ( ConnectionGene copyFrom ) : SharpNeat.Network

Copy constructor.

ConnectionGene ( uint innovationId, uint sourceNodeId, uint targetNodeId, double weight ) : SharpNeat.Network

Construct a new ConnectionGene with the specified source and target neurons and connection weight.

CreateCopy ( ) : ConnectionGene

Creates a copy of the current gene. Virtual method that can be overridden by sub-types.

메소드 상세

ConnectionGene() 공개 메소드

Copy constructor.
public ConnectionGene ( ConnectionGene copyFrom ) : SharpNeat.Network
copyFrom ConnectionGene
리턴 SharpNeat.Network

ConnectionGene() 공개 메소드

Construct a new ConnectionGene with the specified source and target neurons and connection weight.
public ConnectionGene ( uint innovationId, uint sourceNodeId, uint targetNodeId, double weight ) : SharpNeat.Network
innovationId uint
sourceNodeId uint
targetNodeId uint
weight double
리턴 SharpNeat.Network

CreateCopy() 공개 메소드

Creates a copy of the current gene. Virtual method that can be overridden by sub-types.
public CreateCopy ( ) : ConnectionGene
리턴 ConnectionGene