Interface IVertexColorizerAlgorithm<TVertex>
Represents an algorithm that puts colors on vertices and allow to get that color.
Namespace: QuikGraph.Algorithms
Assembly: QuikGraph.dll
Syntax
public interface IVertexColorizerAlgorithm<in TVertex>
Type Parameters
| Name | Description |
|---|---|
| TVertex | Vertex type. |
Methods
| Improve this Doc View SourceGetVertexColor(TVertex)
Gets the GraphColor associated to the given vertex.
Declaration
GraphColor GetVertexColor(TVertex vertex)
Parameters
| Type | Name | Description |
|---|---|---|
| TVertex | vertex | The vertex. |
Returns
| Type | Description |
|---|---|
| GraphColor | The vertex GraphColor. |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentNullException |
|
| VertexNotFoundException |
|