view 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
line wrap: on
line source

namespace Implab.Automaton {
    public struct DFAStateDescriptior<TTag> {
        public bool final;
        public TTag[] tag;
        public int[] transitions;
    }
}