This commit is contained in:
IlyaShurupov 2024-02-07 18:22:42 +03:00 committed by Ilusha
parent dd6b63acb1
commit 81a2247bf2
4 changed files with 18 additions and 14 deletions

View file

@ -10,7 +10,7 @@ namespace tp {
template <typename tAlphabetType, typename TokenType>
class Parser {
typedef TransitionMatrix<tAlphabetType, TokenType, TokenType::InTransition, TokenType::Failed> RegularTable;
typedef RegularAutomata<tAlphabetType, TokenType, TokenType::InTransition, TokenType::Failed> RegularTable;
typedef FiniteStateAutomation<tAlphabetType, TokenType> RegularGraph;
typedef RegularCompiler<tAlphabetType, TokenType, TokenType::InTransition, TokenType::Failed> RegularCompiler;
typedef FiniteStateAutomation<tAlphabetType, TokenType> RegularNonDetGraph;