| FeedForwardNetworkValidateLink Method |
Checks that a Link between two Nodes
is valid.
Namespace: Imsl.DataMining.NeuralAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntaxprotected virtual void ValidateLink(
Node from,
Node to
)
Protected Overridable Sub ValidateLink (
from As Node,
to As Node
)
protected:
virtual void ValidateLink(
Node^ from,
Node^ to
)
abstract ValidateLink :
from : Node *
to : Node -> unit
override ValidateLink :
from : Node *
to : Node -> unit Parameters
- from
- Type: Imsl.DataMining.NeuralNode
The origination Node.
- to
- Type: Imsl.DataMining.NeuralNode
The destination Node.
Exceptions
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