using System; namespace Implab.Automaton { public interface IDFATableBuilder : IDFATable { /// /// Marks the state as final. /// /// State. void MarkFinalState(int state); /// /// Defines the transition from to /// with input . /// /// S1. /// S2. /// Symbol. void DefineTransition(int s1, int s2, int symbol); void SetInitialState(int s); } }