Mercurial > pub > ImplabNet
comparison Implab/Automaton/IDFATable.cs @ 166:b84cdbe82e7f ref20160224
sync
author | cin |
---|---|
date | Mon, 29 Feb 2016 18:41:01 +0300 |
parents | e227e78d72e4 |
children | 0f70905b4652 |
comparison
equal
deleted
inserted
replaced
165:e227e78d72e4 | 166:b84cdbe82e7f |
---|---|
29 /// // if everything is ok | 29 /// // if everything is ok |
30 /// m_current = next; | 30 /// m_current = next; |
31 /// } | 31 /// } |
32 /// } | 32 /// } |
33 /// </example> | 33 /// </example> |
34 public interface IDFATable { | 34 public interface IDFATable : IEnumerable<AutomatonTransition> { |
35 /// <summary> | 35 /// <summary> |
36 /// Таблица переходов состояний автомата | 36 /// Таблица переходов состояний автомата |
37 /// </summary> | 37 /// </summary> |
38 /// <returns>The transition table.</returns> | 38 /// <returns>The transition table.</returns> |
39 DFAStateDescriptior[] GetTransitionTable(); | 39 DFAStateDescriptior[] GetTransitionTable(); |