view Implab/Automaton/AutomatonConst.cs @ 178:d5c5db0335ee ref20160224

working on JSON parser
author cin
date Wed, 23 Mar 2016 19:51:45 +0300 (2016-03-23)
parents
children 478ef706906a
line wrap: on
line source

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

        public const int UNCLASSIFIED_INPUT = 0;
    }
}