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

nonrecursive local closure algo

parent 05811c4f
No related branches found
No related tags found
No related merge requests found
...@@ -84,37 +84,38 @@ ext::set<ext::set<ext::pair<StateType,StateType>>> existsDirtyState(const T& d, ...@@ -84,37 +84,38 @@ ext::set<ext::set<ext::pair<StateType,StateType>>> existsDirtyState(const T& d,
return dirtyStates; return dirtyStates;
} }
   
template<class T, class DeterministicStateType > template < class T, class DeterministicStateType >
void localClosure(ext::set<DeterministicStateType>& states, const ext::set<DeterministicStateType>& oldStates, const T & d) { ext::set < DeterministicStateType > localClosure ( const DeterministicStateType & initState, const T & d ) {
ext::set<DeterministicStateType> newStates; ext::set < DeterministicStateType > closed { initState };
ext::deque < DeterministicStateType > queue { initState };
   
for(const DeterministicStateType& state : oldStates) { while ( ! queue.empty ( ) ) {
for(const auto& transition : d.getLocalTransitions()) { DeterministicStateType state = std::move ( queue.back ( ) );
if(transition.second != state) continue; queue.pop_back ( );
   
if(!states.count(transition.first.first)) { for ( const auto & transition : d.getLocalTransitions ( ) ) {
states.insert(transition.first.first); if ( transition.second != state )
newStates.insert(transition.first.first); continue;
}
if ( closed.insert ( transition.first.first ).second )
queue.push_back ( transition.first.first );
} }
   
for(const auto& transition : d.getReturnTransitions()) { for ( const auto & transition : d.getReturnTransitions ( ) ) {
if(transition.second != state) continue; if ( transition.second != state )
continue;
   
const auto& popSymbol = std::get<2>(transition.first); const auto & popSymbol = std::get < 2 > ( transition.first );
if(popSymbol == d.getBottomOfTheStackSymbol()) continue; if ( popSymbol == d.getBottomOfTheStackSymbol ( ) )
continue;
   
const DeterministicStateType & statePart = popSymbol.first; const DeterministicStateType & statePart = popSymbol.first;
if ( closed.insert ( statePart ).second )
if(!states.count(statePart)) { queue.push_back ( statePart );
states.insert(statePart);
newStates.insert(statePart);
}
} }
} }
   
if(newStates.empty()) return; return closed;
localClosure(states, newStates, d);
} }
   
template<class T, class DeterministicStateType, class InputSymbolType, class DeterministicPushdownStoreSymbolType, class R> template<class T, class DeterministicStateType, class InputSymbolType, class DeterministicPushdownStoreSymbolType, class R>
...@@ -142,8 +143,7 @@ ext::set<ext::pair<DeterministicStateType, DeterministicPushdownStoreSymbolType> ...@@ -142,8 +143,7 @@ ext::set<ext::pair<DeterministicStateType, DeterministicPushdownStoreSymbolType>
} }
if(!originalPops) continue; if(!originalPops) continue;
   
ext::set<DeterministicStateType> lc { state }; ext::set < DeterministicStateType > lc = localClosure ( state, d );
localClosure(lc, ext::set<DeterministicStateType>{state}, d); //intentional copy
   
ext::set<DeterministicPushdownStoreSymbolType> topSymbols; ext::set<DeterministicPushdownStoreSymbolType> topSymbols;
for(const DeterministicStateType& localState : lc) { for(const DeterministicStateType& localState : lc) {
......
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