Click or drag to resize
FeedForwardNetworkValidateLink Method
Checks that a Link between two Nodes is valid.

Namespace: Imsl.DataMining.Neural
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
protected virtual void ValidateLink(
	Node from,
	Node to
)

Parameters

from
Type: Imsl.DataMining.NeuralNode
The origination Node.
to
Type: Imsl.DataMining.NeuralNode
The destination Node.
Exceptions
ExceptionCondition
ArgumentException is thrown if the Link is not valid
Remarks

In a feed forward network a link must be from a node in one layer to a node in a later layer. Intermediate layers can be skipped, but a link cannot go backward.

See Also