Graphics module Initial (And some more fixes embedded)
This commit is contained in:
parent
98132ca2f5
commit
f52b351cac
23 changed files with 456 additions and 31 deletions
|
|
@ -222,7 +222,6 @@ namespace tp {
|
|||
|
||||
// all NFA states that are reachable from initial DFA State for specific symbol in alphabet
|
||||
struct DState {
|
||||
|
||||
struct DTransition {
|
||||
DState* state = nullptr;
|
||||
tAlphabetType accepting_code;
|
||||
|
|
@ -231,7 +230,7 @@ namespace tp {
|
|||
List<NState*> nStates;
|
||||
List<DTransition> transitions;
|
||||
|
||||
Vertex* dVertex = nullptr; // relevant DFA vertex
|
||||
Vertex* dVertex= nullptr; // relevant DFA vertex
|
||||
|
||||
#ifdef ENV_BUILD_DEBUG
|
||||
ualni debug_idx = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue