Checks that a Link between two Nodes is valid.

Namespace: Imsl.DataMining.Neural
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
protected internal virtual void ValidateLink(
	Node from,
	Node to
)
Visual Basic (Declaration)
Protected Friend Overridable Sub ValidateLink ( _
	from As Node, _
	to As Node _
)
Visual C++
protected public:
virtual void ValidateLink(
	Node^ from, 
	Node^ to
)

Parameters

from
Type: Imsl.DataMining.Neural..::.Node
The origination Node.
to
Type: Imsl.DataMining.Neural..::.Node
The destination Node.

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.

Exceptions

ExceptionCondition
System..::.ArgumentException is thrown if the Link is not valid

See Also