parsing loop closed
This commit is contained in:
parent
aaeb6438a1
commit
30d4f194ba
8 changed files with 92 additions and 45 deletions
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
namespace tp {
|
||||
|
||||
template <typename tAlphabetType, typename tStateType, ualni tMinSymbol, ualni tMaxSymbol>
|
||||
template <typename tAlphabetType, typename tStateType, tStateType tInTransition, ualni tMinSymbol, ualni tMaxSymbol>
|
||||
class RegularCompiler {
|
||||
|
||||
typedef FiniteStateAutomation<tAlphabetType, tStateType> Graph;
|
||||
|
|
@ -203,6 +203,6 @@ namespace tp {
|
|||
}
|
||||
}
|
||||
|
||||
Vertex* addVertex() { return mGraph->addState(tStateType::InTransition, false); }
|
||||
Vertex* addVertex() { return mGraph->addState(tInTransition, false); }
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue