Mercurial > pub > ImplabNet
comparison Implab/Formats/RegularCharDFADefinition.cs @ 165:e227e78d72e4 ref20160224
DFA refactoring
| author | cin |
|---|---|
| date | Mon, 29 Feb 2016 02:02:17 +0300 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 164:ec35731ae299 | 165:e227e78d72e4 |
|---|---|
| 1 using System; | |
| 2 using Implab.Automaton.RegularExpressions; | |
| 3 | |
| 4 namespace Implab.Formats { | |
| 5 public class RegularCharDFADefinition<TTag> : RegularDFADefinition<char,TTag> { | |
| 6 readonly CharAlphabet m_alphabet; | |
| 7 | |
| 8 public RegularCharDFADefinition(CharAlphabet alphabet) : base(alphabet) { | |
| 9 m_alphabet = alphabet; | |
| 10 } | |
| 11 | |
| 12 public new CharAlphabet InputAlphabet { | |
| 13 get { return m_alphabet; } | |
| 14 } | |
| 15 } | |
| 16 } | |
| 17 |
