C# Class SharpNeat.Decoders.HyperNeat.SubstrateNode

Represents a node within a HyperNEAT substrate.
Mostrar archivo Open project: colgreen/sharpneat Class Usage Examples

Public Properties

Property Type Description
_id uint
_position double[]

Public Methods

Method Description
SubstrateNode ( uint id, double position )

Construct with the specified node ID and position coordinates.

Method Details

SubstrateNode() public method

Construct with the specified node ID and position coordinates.
public SubstrateNode ( uint id, double position )
id uint
position double

Property Details

_id public_oe property

Node ID.
public uint _id
return uint

_position public_oe property

The node's position coordinates on the substrate. The substrate dimensionality is not restricted.
public double[] _position
return double[]