Skip to content
Snippets Groups Projects
Commit 9712e98c authored by Jan Trávníček's avatar Jan Trávníček
Browse files

- bottomOfThePushdownStore symbol from stackAlph.

parent f3a90454
No related branches found
No related tags found
No related merge requests found
......@@ -96,7 +96,7 @@ automaton::DPDA RHPDAToPDA::convert( const automaton::RealTimeHeightDeterministi
 
res.setInputAlphabet(pda.getInputAlphabet());
res.setStackAlphabet(pda.getStackAlphabet());
res.removeStackSymbol(alphabet::Symbol { alphabet::BottomOfTheStackSymbol::BOTTOM_OF_THE_STACK });
res.removeStackSymbol(pda.getBottomOfTheStackSymbol());
 
for(const auto& st : readingTransitions) {
for(const auto& to : st.second) {
......@@ -218,6 +218,7 @@ automaton::NPDA RHPDAToPDA::convert( const automaton::RealTimeHeightDeterministi
 
res.setInputAlphabet(pda.getInputAlphabet());
res.setStackAlphabet(pda.getStackAlphabet());
res.removeStackSymbol(pda.getBottomOfTheStackSymbol());
 
for(const auto& st : readingTransitions) {
for(const auto& to : st.second) {
......
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