Interface IVertexPredecessorRecorderAlgorithm<TVertex, TEdge>
An algorithm that exposes events to compute vertices predecessors (in directed graph).
Inherited Members
Namespace: QuikGraph.Algorithms
Assembly: QuikGraph.dll
Syntax
public interface IVertexPredecessorRecorderAlgorithm<TVertex, out TEdge> : ITreeBuilderAlgorithm<TVertex, TEdge> where TEdge : IEdge<TVertex>
Type Parameters
Name | Description |
---|---|
TVertex | Vertex type. |
TEdge | Edge type. |
Events
| Improve this Doc View SourceFinishVertex
Fired when a vertex is fully treated.
Declaration
event VertexAction<TVertex> FinishVertex
Event Type
Type | Description |
---|---|
VertexAction<TVertex> |
StartVertex
Fired on a starting vertex once before the start of the search from it.
Declaration
event VertexAction<TVertex> StartVertex
Event Type
Type | Description |
---|---|
VertexAction<TVertex> |