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

JsonReader optimizations
author cin
date Tue, 21 Nov 2017 14:57:58 +0300
parents 478ef706906a
children
line wrap: on
line diff
--- a/Implab/Automaton/AutomatonConst.cs	Thu Oct 05 09:24:49 2017 +0300
+++ b/Implab/Automaton/AutomatonConst.cs	Tue Nov 21 14:57:58 2017 +0300
@@ -1,9 +1,9 @@
 
 namespace Implab.Automaton {
     public static class AutomatonConst {
-        public const int UNREACHABLE_STATE = -1;
+        public const int UnreachableState = -1;
 
-        public const int UNCLASSIFIED_INPUT = 0;
+        public const int UnclassifiedInput = 0;
     }
 }