C# 클래스 SharpNeat.Decoders.HyperNeat.SubstrateNode

Represents a node within a HyperNEAT substrate.
파일 보기 프로젝트 열기: colgreen/sharpneat 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
_id uint
_position double[]

공개 메소드들

메소드 설명
SubstrateNode ( uint id, double position )

Construct with the specified node ID and position coordinates.

메소드 상세

SubstrateNode() 공개 메소드

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

프로퍼티 상세

_id 공개적으로 프로퍼티

Node ID.
public uint _id
리턴 uint

_position 공개적으로 프로퍼티

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