##// END OF EJS Templates
DFA refactoring
DFA refactoring

File last commit:

r165:e227e78d72e4 ref20160224
r165:e227e78d72e4 ref20160224
Show More
DFAStateDescriptor.cs
15 lines | 424 B | text/x-csharp | CSharpLexer
/ Implab / Automaton / DFAStateDescriptor.cs
cin
Almost complete DFA refactoring
r164 namespace Implab.Automaton {
cin
DFA refactoring
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
DFA refactoring
r162 }
}