annotate Implab/Automaton/AutomatonConst.cs @ 262:f1696cdc3d7a v3 v3.0.8

Added IInitializable.Initialize() overload Added IRunnable.Start(), IRunnable.Start() overloads Fixed cancellation of the current operation when Stop() is called More tests
author cin
date Mon, 16 Apr 2018 02:12:39 +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