comparison Implab/Automaton/AutomatonConst.cs @ 236:302ca905c19e v2

JsonReader optimizations
author cin
date Tue, 21 Nov 2017 14:57:58 +0300
parents 478ef706906a
children
comparison
equal deleted inserted replaced
235:b49969a7043c 236:302ca905c19e
1  1 
2 namespace Implab.Automaton { 2 namespace Implab.Automaton {
3 public static class AutomatonConst { 3 public static class AutomatonConst {
4 public const int UNREACHABLE_STATE = -1; 4 public const int UnreachableState = -1;
5 5
6 public const int UNCLASSIFIED_INPUT = 0; 6 public const int UnclassifiedInput = 0;
7 } 7 }
8 } 8 }
9 9