Mercurial > pub > ImplabNet
view Implab/Automaton/RegularExpressions/ITaggedDFABuilder.cs @ 218:babe55c34931 v2
Trace logical operations in the correct channel
author | cin |
---|---|
date | Thu, 04 May 2017 02:17:53 +0300 |
parents | a0ff6a0e9c44 |
children |
line wrap: on
line source
namespace Implab.Automaton.RegularExpressions { public interface ITaggedDFABuilder<TTag> : IDFATableBuilder { void SetStateTag(int s, TTag[] tags); } }