Show / Hide Table of Contents

Enum GraphColor

Colors used in vertex coloring algorithms.

Namespace: QuikGraph
Assembly: QuikGraph.dll
Syntax
[Serializable]
public enum GraphColor : byte

Fields

Name Description
Black

Usually finished color.

Gray

Usually intermediate color.

White

Usually initial color.

Extension Methods

GraphMLExtensions.SerializeToGraphML<TVertex, TEdge, GraphColor>(String)
GraphMLExtensions.SerializeToGraphML<TVertex, TEdge, GraphColor>(String, VertexIdentity<TVertex>, EdgeIdentity<TVertex, TEdge>)
GraphMLExtensions.SerializeToGraphML<TVertex, TEdge, GraphColor>(XmlWriter)
GraphMLExtensions.SerializeToGraphML<TVertex, TEdge, GraphColor>(XmlWriter, VertexIdentity<TVertex>, EdgeIdentity<TVertex, TEdge>)
GraphMLExtensions.DeserializeFromGraphML<TVertex, TEdge, GraphColor>(XmlReader, IdentifiableVertexFactory<TVertex>, IdentifiableEdgeFactory<TVertex, TEdge>)
GraphMLExtensions.DeserializeFromGraphML<TVertex, TEdge, GraphColor>(TextReader, IdentifiableVertexFactory<TVertex>, IdentifiableEdgeFactory<TVertex, TEdge>)
GraphMLExtensions.DeserializeFromGraphML<TVertex, TEdge, GraphColor>(String, IdentifiableVertexFactory<TVertex>, IdentifiableEdgeFactory<TVertex, TEdge>)
GraphMLExtensions.DeserializeAndValidateFromGraphML<TVertex, TEdge, GraphColor>(TextReader, IdentifiableVertexFactory<TVertex>, IdentifiableEdgeFactory<TVertex, TEdge>)
SerializationExtensions.SerializeToXml<TVertex, TEdge, GraphColor>(XmlWriter, VertexIdentity<TVertex>, EdgeIdentity<TVertex, TEdge>, String, String, String, String)
SerializationExtensions.SerializeToXml<TVertex, TEdge, GraphColor>(XmlWriter, VertexIdentity<TVertex>, EdgeIdentity<TVertex, TEdge>, String, String, String, String, Action<XmlWriter, GraphColor>, Action<XmlWriter, TVertex>, Action<XmlWriter, TEdge>)
  • Improve this Doc
  • View Source
In This Article
Back to top QuikGraph