C# 클래스 SharpNeat.Network.NetworkDepthInfo

Conveys summary information from a network depth analysis .
파일 보기 프로젝트 열기: colgreen/sharpneat

공개 프로퍼티들

프로퍼티 타입 설명
_networkDepth int
_nodeDepthArr int[]

공개 메소드들

메소드 설명
NetworkDepthInfo ( int networkDepth, int nodeDepthArr )

Construct with the provided info.

메소드 상세

NetworkDepthInfo() 공개 메소드

Construct with the provided info.
public NetworkDepthInfo ( int networkDepth, int nodeDepthArr )
networkDepth int
nodeDepthArr int

프로퍼티 상세

_networkDepth 공개적으로 프로퍼티

Indicates the total depth of the network. This is the highest value within _nodeDepths + 1 (because the first layer is layer 0)
public int _networkDepth
리턴 int

_nodeDepthArr 공개적으로 프로퍼티

An array containing the depth of each node in the network (indexed by position within the analysed INodeList).
public int[] _nodeDepthArr
리턴 int[]