C# 클래스 SearchAlgorithms.Automata.Nfa

파일 보기 프로젝트 열기: Skookum/SearchAlgorithms 1 사용 예제들

공개 메소드들

메소드 설명
AddFinalState ( int>.Tuple finalState ) : void
AddTransition ( int>.Tuple src, char input, int>.Tuple dest ) : void
ConstructDfaUsingPowerSet ( ) : Dfa
Nfa ( ) : System
WriteGraph ( ) : string

비공개 메소드들

메소드 설명
_Expand ( AutomataState states ) : AutomataState
_GetInputs ( AutomataState states ) : IEnumerable
_IsFinal ( AutomataState states ) : bool
_NextState ( AutomataState states, char input ) : AutomataState

메소드 상세

AddFinalState() 공개 메소드

public AddFinalState ( int>.Tuple finalState ) : void
finalState int>.Tuple
리턴 void

AddTransition() 공개 메소드

public AddTransition ( int>.Tuple src, char input, int>.Tuple dest ) : void
src int>.Tuple
input char
dest int>.Tuple
리턴 void

ConstructDfaUsingPowerSet() 공개 메소드

public ConstructDfaUsingPowerSet ( ) : Dfa
리턴 Dfa

Nfa() 공개 메소드

public Nfa ( ) : System
리턴 System

WriteGraph() 공개 메소드

public WriteGraph ( ) : string
리턴 string