Mercurial > pub > ImplabNet
diff Implab/Formats/CharAlphabet.cs @ 192:f1da3afc3521 release v2.1
Слияние с v2
author | cin |
---|---|
date | Fri, 22 Apr 2016 13:10:34 +0300 |
parents | a0ff6a0e9c44 |
children | 6fa235c5a760 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Implab/Formats/CharAlphabet.cs Fri Apr 22 13:10:34 2016 +0300 @@ -0,0 +1,16 @@ +using System.Collections.Generic; +using System.Linq; +using Implab.Automaton; + +namespace Implab.Formats { + public class CharAlphabet: IndexedAlphabetBase<char> { + + public override int GetSymbolIndex(char symbol) { + return symbol; + } + + public IEnumerable<char> InputSymbols { + get { return Enumerable.Range(char.MinValue, char.MaxValue).Cast<char>(); } + } + } +}