Skip to content
Snippets Groups Projects
Commit 25ecfb10 authored by Jan Vesely's avatar Jan Vesely
Browse files

small change in vpa determinizations

parent 3b186c55
No related branches found
No related tags found
No related merge requests found
......@@ -121,7 +121,7 @@ Automaton* VpaDeterminizer::determinize()
RComponent& r = unmarkedStateData->r;
// Empty stack
list<Symbol> bottomOfStack(1, VpaUtils::BOTTOM_OF_STACK_SYMBOL);
list<Symbol> bottomOfStack = {VpaUtils::BOTTOM_OF_STACK_SYMBOL};
SComponent sPrimed;
for (const auto& statesPair : s.statesPairs) {
const State& q = statesPair.state1;
......
......@@ -121,7 +121,7 @@ Automaton* VpaDeterminizer2::determinize()
RComponent& r = unmarkedStateData->r;
// Empty stack
list<Symbol> bottomOfStack(1, VpaUtils::BOTTOM_OF_STACK_SYMBOL);
list<Symbol> bottomOfStack = {VpaUtils::BOTTOM_OF_STACK_SYMBOL};
SComponent sPrimed;
for (const auto& statesPair : s.statesPairs) {
const State& q = statesPair.state1;
......
......@@ -140,7 +140,7 @@ Automaton* VpaDeterminizer3::determinize()
SComponent& s = unmarkedStateData->s;
// Empty stack
list<Symbol> bottomOfStack(1, VpaUtils::BOTTOM_OF_STACK_SYMBOL);
list<Symbol> bottomOfStack = {VpaUtils::BOTTOM_OF_STACK_SYMBOL};
SComponent sPrimed;
for (const auto& statesPair : s.statesPairs) {
const State& q = statesPair.state1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment