##// END OF EJS Templates
sync
sync

File last commit:

r165:e227e78d72e4 ref20160224
r166:b84cdbe82e7f ref20160224
Show More
RegularCharDFADefinition.cs
17 lines | 450 B | text/x-csharp | CSharpLexer
/ Implab / Formats / RegularCharDFADefinition.cs
cin
DFA refactoring
r165 using System;
using Implab.Automaton.RegularExpressions;
namespace Implab.Formats {
public class RegularCharDFADefinition<TTag> : RegularDFADefinition<char,TTag> {
readonly CharAlphabet m_alphabet;
public RegularCharDFADefinition(CharAlphabet alphabet) : base(alphabet) {
m_alphabet = alphabet;
}
public new CharAlphabet InputAlphabet {
get { return m_alphabet; }
}
}
}