Removes cycles from the input network using a depth first search.
            A link not in the depth first forest is reversed if the from-node was discovered
            and finished by the depth first search after the to-node was discovered but before
            the to-node was finished.
            
            
            
            Syntax
            
            
            
            
            protected virtual void DepthFirstSearchCycleRemoval()
             
        
             
        
            
            
             
            
            
            
            
            
            
            
            
            
            
            
            See Also