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

some verbose output

parent a6ba027f
No related branches found
No related tags found
No related merge requests found
......@@ -268,6 +268,13 @@ automaton::RealTimeHeightDeterministicDPDA Determinize::determinize(const automa
}
}
 
if ( common::GlobalData::verbose ) {
std::clog << "Rubbish states: " << rubbishStates << std::endl;
std::clog << "Rubbish return transitions: " << rubbishReturnTransitions << std::endl;
std::clog << "Rubbish call transitions: " << rubbishCallTransitions << std::endl;
std::clog << "Rubbish local transitions:" << rubbishLocalTransitions << std::endl;
}
return d;
}
 
......
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