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

File last commit:

r164:ec35731ae299 ref20160224
r164:ec35731ae299 ref20160224
Show More
DFAStateDescriptor.cs
7 lines | 181 B | text/x-csharp | CSharpLexer
namespace Implab.Automaton {
public struct DFAStateDescriptior<TTag> {
public bool final;
public TTag[] tag;
public int[] transitions;
}
}