Mercurial > pub > ImplabNet
comparison Implab/Formats/ByteAlphabet.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 System; | 1 using System.Collections.Generic; |
| 2 using System.Collections.Generic; | |
| 3 using System.Linq; | 2 using System.Linq; |
| 3 using Implab.Automaton; | |
| 4 | 4 |
| 5 namespace Implab.Automaton { | 5 namespace Implab.Formats { |
| 6 public class ByteAlphabet : IndexedAlphabetBase<byte> { | 6 public class ByteAlphabet : IndexedAlphabetBase<byte> { |
| 7 public ByteAlphabet() : base(byte.MaxValue + 1){ | 7 public ByteAlphabet() : base(byte.MaxValue + 1){ |
| 8 } | 8 } |
| 9 | 9 |
| 10 #region implemented abstract members of IndexedAlphabetBase | 10 #region implemented abstract members of IndexedAlphabetBase |
