view Implab/Automaton/AutomatonConst.cs @ 281:e0916ddc9950 v3 tip

code cleanup and refactoring
author cin
date Fri, 01 Jun 2018 21:35:24 +0300
parents 302ca905c19e
children
line wrap: on
line source


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

        public const int UnclassifiedInput = 0;
    }
}