Nevron .NET Vision
Nevron.Diagram.DataStructures Namespace / NGraph Class / TopologicalOrderTraversal Method
visitor to use


In This Topic
    TopologicalOrderTraversal Method
    In This Topic
    Performs a topological order traversal of the graph parts in this graph (directed graph)
    Syntax
    'Declaration
     
    
    Public Overridable Sub TopologicalOrderTraversal( _
       ByVal visitor As NGraphPartVisitor _
    ) 
    'Usage
     
    
    Dim instance As NGraph
    Dim visitor As NGraphPartVisitor
     
    instance.TopologicalOrderTraversal(visitor)
    public virtual void TopologicalOrderTraversal( 
       NGraphPartVisitor visitor
    )

    Parameters

    visitor
    visitor to use
    Remarks
    A topological traversal will traverse the vertices based on their topological sort order. A topological sort order is such an order of the vertices of the graph in which for each pair of vertices (A, B), if B is a successor of A then B will be after A in the order.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also