Mercurial > pub > ImplabNet
view Implab/Automaton/IDFATableBuilder.cs @ 176:0c3c69fe225b ref20160224
rewritten the text scanner
author | cin |
---|---|
date | Tue, 22 Mar 2016 18:58:40 +0300 |
parents | 8fb9c9507a26 |
children | 76e8f2ba12b8 |
line wrap: on
line source
using System; using System.Collections.Generic; namespace Implab.Automaton { public interface IDFATableBuilder : IDFATable, ICollection<AutomatonTransition> { /// <summary> /// Marks the state as final. /// </summary> /// <param name="state">State.</param> void MarkFinalState(int state); void SetInitialState(int s); } }