annotate Implab/Automaton/AutomatonConst.cs @ 200:71e543dbe65a v2

working version of the project
author cin
date Fri, 14 Oct 2016 04:03:10 +0300
parents 478ef706906a
children 302ca905c19e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
178
d5c5db0335ee working on JSON parser
cin
parents:
diff changeset
1 
d5c5db0335ee working on JSON parser
cin
parents:
diff changeset
2 namespace Implab.Automaton {
179
cin
parents: 178
diff changeset
3 public static class AutomatonConst {
178
d5c5db0335ee working on JSON parser
cin
parents:
diff changeset
4 public const int UNREACHABLE_STATE = -1;
d5c5db0335ee working on JSON parser
cin
parents:
diff changeset
5
d5c5db0335ee working on JSON parser
cin
parents:
diff changeset
6 public const int UNCLASSIFIED_INPUT = 0;
d5c5db0335ee working on JSON parser
cin
parents:
diff changeset
7 }
d5c5db0335ee working on JSON parser
cin
parents:
diff changeset
8 }
d5c5db0335ee working on JSON parser
cin
parents:
diff changeset
9