C# Class SharpNeat.Network.NetworkDepthInfo

Conveys summary information from a network depth analysis .
Show file Open project: colgreen/sharpneat

Public Properties

Property Type Description
_networkDepth int
_nodeDepthArr int[]

Public Methods

Method Description
NetworkDepthInfo ( int networkDepth, int nodeDepthArr )

Construct with the provided info.

Method Details

NetworkDepthInfo() public method

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

Property Details

_networkDepth public 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
return int

_nodeDepthArr public property

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