Delegate EdgeEqualityComparer<TVertex>
Delegate to compare edge source and target vertex with given ones.
Namespace: QuikGraph
Assembly: QuikGraph.dll
Syntax
public delegate bool EdgeEqualityComparer<in TVertex>(IEdge<TVertex> edge, TVertex source, TVertex target);
Parameters
Type | Name | Description |
---|---|---|
IEdge<TVertex> | edge | Edge to compare. |
TVertex | source | Source vertex to compare with. |
TVertex | target | Target vertex to compare with. |
Returns
Type | Description |
---|---|
System.Boolean | True if the |
Type Parameters
Name | Description |
---|---|
TVertex | Vertex type. |