view Implab/Automaton/AutomatonConst.cs @ 183:4f82e0f161c3 ref20160224

fixed DFA optimization, JSON is fully functional
author cin
date Fri, 25 Mar 2016 02:49:02 +0300
parents 478ef706906a
children 302ca905c19e
line wrap: on
line source


namespace Implab.Automaton {
    public static class AutomatonConst {
        public const int UNREACHABLE_STATE = -1;

        public const int UNCLASSIFIED_INPUT = 0;
    }
}