C# Class SharpNeat.Network.NodeConnectivityData

Stored the IDs of nodes that connect in and out of a given node.
Afficher le fichier Open project: colgreen/sharpneat Class Usage Examples

Méthodes publiques

Свойство Type Description
_id uint
_srcNodes HashSet
_tgtNodes HashSet

Méthodes publiques

Méthode Description
NodeConnectivityData ( uint id ) : System.Collections.Generic

Construct with empty source/target node sets.

NodeConnectivityData ( uint id, HashSet srcNodes, HashSet tgtNodes ) : System.Collections.Generic

Construct with the provided source/target node sets.

Method Details

NodeConnectivityData() public méthode

Construct with empty source/target node sets.
public NodeConnectivityData ( uint id ) : System.Collections.Generic
id uint
Résultat System.Collections.Generic

NodeConnectivityData() public méthode

Construct with the provided source/target node sets.
public NodeConnectivityData ( uint id, HashSet srcNodes, HashSet tgtNodes ) : System.Collections.Generic
id uint
srcNodes HashSet
tgtNodes HashSet
Résultat System.Collections.Generic

Property Details

_id public_oe property

Node ID.
public uint _id
Résultat uint

_srcNodes public_oe property

A set of node IDs representing nodes that connect in to a given node.
public HashSet _srcNodes
Résultat HashSet

_tgtNodes public_oe property

A set of node IDs representing nodes that a given node connects out to.
public HashSet _tgtNodes
Résultat HashSet