Class UndirectedFirstTopologicalSortAlgorithm<TVertex, TEdge>
Undirected topological sort algorithm.
Inheritance
System.Object
AlgorithmBase<IUndirectedGraph<TVertex, TEdge>>
UndirectedFirstTopologicalSortAlgorithm<TVertex, TEdge>
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: QuikGraph.Algorithms.TopologicalSort
Assembly: QuikGraph.dll
Syntax
public sealed class UndirectedFirstTopologicalSortAlgorithm<TVertex, TEdge> : AlgorithmBase<IUndirectedGraph<TVertex, TEdge>>, IAlgorithm<IUndirectedGraph<TVertex, TEdge>>, IComputation, IAlgorithmComponent where TEdge : IEdge<TVertex>
Type Parameters
Name | Description |
---|---|
TVertex | Vertex type. |
TEdge | Edge type. |
Constructors
| Improve this Doc View SourceUndirectedFirstTopologicalSortAlgorithm(IUndirectedGraph<TVertex, TEdge>, Int32)
Initializes a new instance of the UndirectedFirstTopologicalSortAlgorithm<TVertex, TEdge> class.
Declaration
public UndirectedFirstTopologicalSortAlgorithm(IUndirectedGraph<TVertex, TEdge> visitedGraph, int capacity = -1)
Parameters
Type | Name | Description |
---|---|---|
IUndirectedGraph<TVertex, TEdge> | visitedGraph | Graph to visit. |
System.Int32 | capacity | Sorted vertices capacity. |
Exceptions
Type | Condition |
---|---|
System.ArgumentNullException |
|
Properties
| Improve this Doc View SourceAllowCyclicGraph
Gets or sets the flag that indicates if cyclic graph are supported or not.
Declaration
public bool AllowCyclicGraph { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Degrees
Vertices degrees.
Declaration
public IDictionary<TVertex, int> Degrees { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IDictionary<TVertex, System.Int32> |
SortedVertices
Sorted vertices.
Declaration
public TVertex[] SortedVertices { get; }
Property Value
Type | Description |
---|---|
TVertex[] |
Methods
| Improve this Doc View SourceInitialize()
Called on algorithm initialization step.
Declaration
protected override void Initialize()
Overrides
QuikGraph.Algorithms.AlgorithmBase<QuikGraph.IUndirectedGraph<TVertex, TEdge>>.Initialize()
|
Improve this Doc
View Source
InternalCompute()
Algorithm compute step.
Declaration
protected override void InternalCompute()
Overrides
QuikGraph.Algorithms.AlgorithmBase<QuikGraph.IUndirectedGraph<TVertex, TEdge>>.InternalCompute()
Events
| Improve this Doc View SourceVertexAdded
Fired when a vertex is added to the set of sorted vertices.
Declaration
public event VertexAction<TVertex> VertexAdded
Event Type
Type | Description |
---|---|
VertexAction<TVertex> |