Show / Hide Table of Contents

Enum HeapDirection

Specifies the order in which a Heap will Dequeue items.

Namespace: QuikGraph.Collections
Assembly: QuikGraph.dll
Syntax
public enum HeapDirection

Fields

Name Description
Decreasing

Items are Dequeued in Decreasing order, from greatest to least.

Increasing

Items are Dequeued in Increasing order from least to greatest.

Extension Methods

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