annotate Implab/Automaton/AutomatonConst.cs @ 230:3e26338eb977 v2

slowly cutting off mono specific settings
author cin
date Wed, 13 Sep 2017 16:55:13 +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