##// END OF EJS Templates
DFA refactoring, rx based dfa.
DFA refactoring, rx based dfa.

File last commit:

r162:0526412bbb26 ref20160224
r170:181119ef3b39 ref20160224
Show More
DFAConst.cs
10 lines | 190 B | text/x-csharp | CSharpLexer
using System;
namespace Implab.Automaton {
public static class DFAConst {
public const int UNREACHABLE_STATE = -1;
public const int UNCLASSIFIED_INPUT = 0;
}
}