Skip to content
Snippets Groups Projects
Commit c1a249dc authored by Jakub Janák's avatar Jakub Janák
Browse files

better comment added

parent de0cb018
No related branches found
No related tags found
No related merge requests found
......@@ -67,7 +67,7 @@ int Controller::run(int argc, char *argv[]) {
create_synthetic_instance(num_of_nodes);
}
// solving / approximation
// solving
if (vm.contains("solve")) {
solve("");
}
......@@ -76,6 +76,8 @@ int Controller::run(int argc, char *argv[]) {
const int num_of_threads = vm["solve-parallel"].as<int>();
solve("p", num_of_threads);
}
// approximation
if (vm.contains("heuristic-combo")) {
heuristic_combo();
}
......
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