comparison Implab/Formats/CharAlphabet.cs @ 165:e227e78d72e4 ref20160224

DFA refactoring
author cin
date Mon, 29 Feb 2016 02:02:17 +0300
parents ec35731ae299
children 92d5278d1b10
comparison
equal deleted inserted replaced
164:ec35731ae299 165:e227e78d72e4
1 using Implab; 1 using System.Collections.Generic;
2 using System;
3 using System.Collections.Generic;
4 using System.Linq; 2 using System.Linq;
5 using System.Text; 3 using Implab.Automaton;
6 using System.Threading.Tasks;
7 4
8 namespace Implab.Automaton { 5 namespace Implab.Formats {
9 public class CharAlphabet: IndexedAlphabetBase<char> { 6 public class CharAlphabet: IndexedAlphabetBase<char> {
10 7
11 public CharAlphabet() 8 public CharAlphabet()
12 : base(char.MaxValue + 1) { 9 : base(char.MaxValue + 1) {
13 } 10 }