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

auto -> type

parent b41230f9
No related branches found
No related tags found
No related merge requests found
......@@ -109,7 +109,7 @@ automaton::DFA Minimize::minimize(const automaton::DFA& dfa) {
} while(minimizedTransitionFunction1.size() != minimizedTransitionFunction2.size());
 
const automaton::State* initialState = NULL;
for(const auto & transition : minimizedTransitionFunction2) {
for(const std::pair<const std::pair<automaton::State, std::set<std::pair<alphabet::Symbol, automaton::State> > >, std::set<automaton::State> >& transition : minimizedTransitionFunction2) {
if(transition.second.count(dfa.getInitialState())) {
initialState = &(transition.first.first);
break;
......
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