##// END OF EJS Templates
sync
sync

File last commit:

r167:96681e9d0cea ref20160224
r167:96681e9d0cea ref20160224
Show More
IDFATableBuilder.cs
16 lines | 385 B | text/x-csharp | CSharpLexer
using System;
using System.Collections.Generic;
namespace Implab.Automaton {
public interface IDFATableBuilder : IDFATable, ICollection<AutomatonTransition> {
/// <summary>
/// Marks the state as final.
/// </summary>
/// <param name="state">State.</param>
void MarkFinalState(int state);
void SetInitialState(int s);
}
}