##// END OF EJS Templates
Working on text scanner
Working on text scanner

File last commit:

r172:92d5278d1b10 ref20160224
r172:92d5278d1b10 ref20160224
Show More
DFAStateDescriptor.cs
26 lines | 746 B | text/x-csharp | CSharpLexer
namespace Implab.Automaton {
public struct DFAStateDescriptor {
public readonly bool final;
public readonly int[] transitions;
public DFAStateDescriptor(int[] transitions, bool final) {
this.transitions = transitions;
this.final = final;
}
public DFAStateDescriptor(int[] transitions) : this(transitions, false) {
}
public DFAStateDescriptor(int size, bool final) {
Safe.ArgumentInRange(size, 0, int.MaxValue, "size");
this.final = final;
transitions = new int[size];
for (int i = 0; i < size; i++)
transitions[i] = DFAConst.UNREACHABLE_STATE;
}
}
}