Mercurial > pub > ImplabNet
comparison Implab/Automaton/DFAStateDescriptor.cs @ 164:ec35731ae299 ref20160224
Almost complete DFA refactoring
author | cin |
---|---|
date | Thu, 25 Feb 2016 02:11:13 +0300 |
parents | 0526412bbb26 |
children | e227e78d72e4 |
comparison
equal
deleted
inserted
replaced
163:419aa51b04fd | 164:ec35731ae299 |
---|---|
1 using System; | 1 namespace Implab.Automaton { |
2 using System.Collections.Generic; | |
3 using System.Linq; | |
4 using System.Text; | |
5 using System.Threading.Tasks; | |
6 | |
7 namespace Implab.Automaton { | |
8 public struct DFAStateDescriptior<TTag> { | 2 public struct DFAStateDescriptior<TTag> { |
9 public bool final; | 3 public bool final; |
10 public TTag[] tag; | 4 public TTag[] tag; |
11 public int[] transitions; | 5 public int[] transitions; |
12 } | 6 } |