annotate Implab/Automaton/AutomatonConst.cs @ 239:eedf4d834e67 v2

fix
author cin
date Wed, 13 Dec 2017 19:54:45 +0300
parents 302ca905c19e
children
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 {
236
302ca905c19e JsonReader optimizations
cin
parents: 179
diff changeset
4 public const int UnreachableState = -1;
178
d5c5db0335ee working on JSON parser
cin
parents:
diff changeset
5
236
302ca905c19e JsonReader optimizations
cin
parents: 179
diff changeset
6 public const int UnclassifiedInput = 0;
178
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