annotate Implab/Automaton/AutomatonConst.cs @ 183:4f82e0f161c3 ref20160224

fixed DFA optimization, JSON is fully functional
author cin
date Fri, 25 Mar 2016 02:49:02 +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