output total number of compoments and those of size one

This commit is contained in:
Dennis Luxen
2014-12-23 14:32:46 +01:00
parent 71e2f2ed61
commit 8174b3b85a
2 changed files with 8 additions and 4 deletions
+3
View File
@@ -185,6 +185,9 @@ int main(int argc, char *argv[])
restriction_map,
bollard_node_list);
tarjan->run();
SimpleLogger().Write() << "identified: " << tarjan->get_number_of_components()
<< " many components";
SimpleLogger().Write() << "identified " << tarjan->get_size_one_count() << " SCCs of size 1";
// output
TIMER_START(SCC_RUN_SETUP);