using System; using System.Collections.Generic; namespace Implab.Automaton { public interface IDFATableBuilder : IDFATable, ICollection { /// /// Marks the state as final. /// /// State. void MarkFinalState(int state); void SetInitialState(int s); } }