annotate Implab/Automaton/AutomatonConst.cs @ 251:7c7e9ad6fe4a v3

Prerelease version of RunnableComponent Added draft messaging interfaces Added more more helpers to Xml/SerializationHelpers
author cin
date Sun, 11 Feb 2018 00:49:51 +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