Interface IEdgeColorizerAlgorithm<TVertex, TEdge>
Represents a storage of edges colorization state.
Namespace: QuikGraph.Algorithms
Assembly: QuikGraph.dll
Syntax
public interface IEdgeColorizerAlgorithm<TVertex, TEdge>
where TEdge : IEdge<TVertex>
Type Parameters
Name | Description |
---|---|
TVertex | Vertex type. |
TEdge | Edge type. |
Properties
| Improve this Doc View SourceEdgesColors
Treated edges with their colors (colorized edges).
Declaration
IDictionary<TEdge, GraphColor> EdgesColors { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IDictionary<TEdge, GraphColor> |