Mercurial > pub > ImplabNet
annotate Implab/Automaton/IDFATableBuilder.cs @ 175:96a89dcb4060 ref20160224
sync
author | cin |
---|---|
date | Mon, 21 Mar 2016 18:41:45 +0300 |
parents | 8fb9c9507a26 |
children | 76e8f2ba12b8 |
rev | line source |
---|---|
165 | 1 using System; |
167 | 2 using System.Collections.Generic; |
165 | 3 |
4 namespace Implab.Automaton { | |
167 | 5 public interface IDFATableBuilder : IDFATable, ICollection<AutomatonTransition> { |
165 | 6 /// <summary> |
7 /// Marks the state as final. | |
8 /// </summary> | |
9 /// <param name="state">State.</param> | |
10 void MarkFinalState(int state); | |
11 | |
12 void SetInitialState(int s); | |
13 } | |
14 } | |
15 |