##// END OF EJS Templates
JSON moved to Formats namespace...
JSON moved to Formats namespace Working in RegularDFA

File last commit:

r162:0526412bbb26 ref20160224
r163:419aa51b04fd ref20160224
Show More
DFAStateDescriptor.cs
13 lines | 304 B | text/x-csharp | CSharpLexer
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Implab.Automaton {
public struct DFAStateDescriptior<TTag> {
public bool final;
public TTag[] tag;
public int[] transitions;
}
}