Show / Hide Table of Contents

Enum ComputationState

The computation state of a graph algorithm.

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

Fields

Name Description
Aborted

The computation was aborted.

Finished

The computation is finished successfully.

NotRunning

The algorithm is not running.

PendingAbortion

An abort has been requested. The algorithm is still running and will cancel as soon as it checks the cancellation state.

Running

The algorithm is running.

Extension Methods

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