Enum StateMachineNodeType
- Namespace
- LfrlAnvil.Computable.Automata
- Assembly
- LfrlAnvil.Computable.Automata.dll
Represents the type of state machine's node.
[Flags]
public enum StateMachineNodeType : byte
Fields
Accept = 2
Specifies that the node is marked as accept or final node.
Dead = 4
Specifies that no Accept node can be reached from this node.
Default = 0
Specifies that the node is a standard node.
Initial = 1
Specifies that the node is an initial node, at which the state machine starts.