Run() 공개 정적인 메소드

Returns true if the given string is accepted by the automaton.
Complexity: linear in the length of the string. For full performance, use the RunAutomaton class.
public static Run ( Fare.Automaton a, string s ) : bool
a Fare.Automaton The automaton.
s string The string.
리턴 bool
예제 #1
0
파일: Automaton.cs 프로젝트: zvirja/Fare
 public bool Run(string s)
 {
     return(BasicOperations.Run(this, s));
 }
예제 #2
0
 internal bool Run(string s)
 {
     return(BasicOperations.Run(this, s));
 }