C# 클래스 SharpNeat.Network.NodeConnectivityData

Stored the IDs of nodes that connect in and out of a given node.
파일 보기 프로젝트 열기: colgreen/sharpneat 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
_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