Graphics module Initial (And some more fixes embedded)

This commit is contained in:
IlushaShurupov 2023-07-23 10:51:21 +03:00 committed by Ilya Shurupov
parent 98132ca2f5
commit f52b351cac
23 changed files with 456 additions and 31 deletions

View file

@ -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;