Mercurial > pub > ImplabNet
comparison Implab/Automaton/RegularExpressions/RegularDFA.cs @ 177:a0ff6a0e9c44 ref20160224
refactoring
author | cin |
---|---|
date | Wed, 23 Mar 2016 01:42:00 +0300 |
parents | 0c3c69fe225b |
children | d5c5db0335ee |
comparison
equal
deleted
inserted
replaced
176:0c3c69fe225b | 177:a0ff6a0e9c44 |
---|---|
1 using System; | 1 using System.Collections.Generic; |
2 using System.Collections.Generic; | |
3 using System.Linq; | 2 using System.Linq; |
4 | 3 |
5 namespace Implab.Automaton.RegularExpressions { | 4 namespace Implab.Automaton.RegularExpressions { |
6 public class RegularDFA<TInput, TTag> : DFATable, ITaggedDFABuilder<TTag> { | 5 public class RegularDFA<TInput, TTag> : DFATable, ITaggedDFABuilder<TTag> { |
7 | 6 |