C# Класс SharpNeat.Network.NodeConnectivityData

Stored the IDs of nodes that connect in and out of a given node.
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
_id uint
_srcNodes HashSet
_tgtNodes HashSet

Открытые методы

Метод Описание
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.

Описание методов

NodeConnectivityData() публичный Метод

Construct with empty source/target node sets.
public NodeConnectivityData ( uint id ) : System.Collections.Generic
id uint
Результат System.Collections.Generic

NodeConnectivityData() публичный Метод

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
Результат System.Collections.Generic

Описание свойств

_id публичное свойство

Node ID.
public uint _id
Результат uint

_srcNodes публичное свойство

A set of node IDs representing nodes that connect in to a given node.
public HashSet _srcNodes
Результат HashSet

_tgtNodes публичное свойство

A set of node IDs representing nodes that a given node connects out to.
public HashSet _tgtNodes
Результат HashSet