Performs a undirected (depth first and height first) depth first search on a directed bidirectional graph.

Namespace:  QuickGraph.Algorithms.Search
Assembly:  QuickGraph.Algorithms (in QuickGraph.Algorithms.dll) Version: 2.4.2.1514 (2.4.2.1514)

Syntax

C#
public class UndirectedDepthFirstSearchAlgorithm : IVertexColorizerAlgorithm, 
	IPredecessorRecorderAlgorithm, ITimeStamperAlgorithm, IAlgorithm
Visual Basic (Declaration)
Public Class UndirectedDepthFirstSearchAlgorithm _
	Implements IVertexColorizerAlgorithm, IPredecessorRecorderAlgorithm, ITimeStamperAlgorithm, IAlgorithm

Remarks

This algorithm is directly inspired from the BoostGraphLibrary implementation.

Inheritance Hierarchy

System..::.Object
  QuickGraph.Algorithms.Search..::.UndirectedDepthFirstSearchAlgorithm

See Also