Mercurial > pub > ImplabNet
diff Implab/Automaton/RegularExpressions/IDFATable2.cs @ 169:54270c2f29f2 ref20160224
DFA refactoring
author | cin |
---|---|
date | Thu, 03 Mar 2016 08:41:02 +0300 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Implab/Automaton/RegularExpressions/IDFATable2.cs Thu Mar 03 08:41:02 2016 +0300 @@ -0,0 +1,9 @@ +using System; + +namespace Implab.Automaton.RegularExpressions { + public interface IDFATable2<TTag> : IDFATable { + void MarkFinalState(int state, TTag[] tags); + + } +} +