DFAStateDescriptor.cs
15 lines
| 424 B
| text/x-csharp
|
CSharpLexer
cin
|
r164 | namespace Implab.Automaton { | ||
cin
|
r165 | public struct DFAStateDescriptior { | ||
public readonly bool final; | ||||
public readonly int[] transitions; | ||||
public DFAStateDescriptior(int[] transitions, bool final) { | ||||
this.transitions = transitions; | ||||
this.final = final; | ||||
} | ||||
public DFAStateDescriptior(int[] transitions) : this(transitions, false) { | ||||
} | ||||
cin
|
r162 | } | ||
} | ||||