view Implab/Automaton/DFAConst.cs @ 174:983df35b3ca1 ref20160224

sync
author cin
date Fri, 18 Mar 2016 18:10:30 +0300
parents 0526412bbb26
children
line wrap: on
line source

using System;

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

        public const int UNCLASSIFIED_INPUT = 0;
    }
}