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

File last commit:

r169:54270c2f29f2 ref20160224
r169:54270c2f29f2 ref20160224
Show More
IDFATable2.cs
9 lines | 181 B | text/x-csharp | CSharpLexer
cin
DFA refactoring
r169 using System;
namespace Implab.Automaton.RegularExpressions {
public interface IDFATable2<TTag> : IDFATable {
void MarkFinalState(int state, TTag[] tags);
}
}