Mercurial > pub > ImplabNet
view Implab/Automaton/DFAConst.cs @ 171:0f70905b4652 ref20160224
Working on regular DFA
author | cin |
---|---|
date | Thu, 10 Mar 2016 01:19:33 +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; } }