annotate Implab/Automaton/IDFATableBuilder.cs @ 170:181119ef3b39
ref20160224
DFA refactoring, rx based dfa.
author |
cin |
date |
Fri, 04 Mar 2016 01:56:31 +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
|