TreeComparer<TNode>.GetDistance(TNode, TNode) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Calculates the distance [0..1] of two nodes.
public:
abstract double GetDistance(TNode oldNode, TNode newNode);
public abstract double GetDistance(TNode oldNode, TNode newNode);
abstract member GetDistance : 'Node * 'Node -> double
Public MustOverride Function GetDistance (oldNode As TNode, newNode As TNode) As Double
Parameters
- oldNode
- TNode
- newNode
- TNode
Returns
Remarks
The more similar the nodes the smaller the distance.
Used to determine whether two nodes of the same label match. Even if 0 is returned the nodes might be slightly different.