Mercurial > pub > ImplabNet
annotate Implab/Automaton/IDFATableBuilder.cs @ 167:96681e9d0cea ref20160224
sync
| author | cin |
|---|---|
| date | Wed, 02 Mar 2016 00:20:48 +0300 |
| parents | e227e78d72e4 |
| children | 8fb9c9507a26 |
| 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 } | |
| 16 |
