Mercurial > pub > ImplabNet
annotate Implab/Automaton/IDFATableBuilder.cs @ 168:8fb9c9507a26 ref20160224
sync
author | cin |
---|---|
date | Wed, 02 Mar 2016 19:59:16 +0300 |
parents | 96681e9d0cea |
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 |