annotate Implab/Automaton/DFAStateDescriptor.cs @ 163:419aa51b04fd
 ref20160224 
JSON moved to Formats namespace
Working in RegularDFA
 | author | cin | 
 | date | Wed, 24 Feb 2016 20:12:52 +0300 | 
 | parents | 0526412bbb26 | 
 | children | ec35731ae299 | 
 | rev | line source | 
  
| 162 | 1 using System; | 
|  | 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> { | 
|  | 9         public bool final; | 
|  | 10         public TTag[] tag; | 
|  | 11         public int[] transitions; | 
|  | 12     } | 
|  | 13 } |