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. |