Interface IDistanceRecorderAlgorithm<TVertex>
An algorithm that exposes events to compute a distance map between vertices.
Namespace: QuikGraph.Algorithms
Assembly: QuikGraph.dll
Syntax
public interface IDistanceRecorderAlgorithm<out TVertex>
Type Parameters
Name | Description |
---|---|
TVertex | Vertex type. |
Events
| Improve this Doc View SourceDiscoverVertex
Fired when a vertex is discovered.
Declaration
event VertexAction<TVertex> DiscoverVertex
Event Type
Type | Description |
---|---|
VertexAction<TVertex> |
InitializeVertex
Fired when a vertex is initialized.
Declaration
event VertexAction<TVertex> InitializeVertex
Event Type
Type | Description |
---|---|
VertexAction<TVertex> |