C# Class SharpNeat.Network.NetworkDepthInfo

Conveys summary information from a network depth analysis .
Afficher le fichier Open project: colgreen/sharpneat

Méthodes publiques

Свойство Type Description
_networkDepth int
_nodeDepthArr int[]

Méthodes publiques

Méthode Description
NetworkDepthInfo ( int networkDepth, int nodeDepthArr )

Construct with the provided info.

Method Details

NetworkDepthInfo() public méthode

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

Property Details

_networkDepth public_oe property

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
Résultat int

_nodeDepthArr public_oe property

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