File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -466,7 +466,7 @@ inline void CCSketchAlg::create_merge_instructions(std::vector<MergeInstr> &merg
466466}
467467
468468void CCSketchAlg::boruvka_emulation () {
469- auto start = std::chrono::steady_clock::now ();
469+ // auto start = std::chrono::steady_clock::now();
470470 update_locked = true ;
471471
472472 cc_alg_start = std::chrono::steady_clock::now ();
@@ -493,7 +493,7 @@ void CCSketchAlg::boruvka_emulation() {
493493
494494 while (true ) {
495495 // std::cout << " Round: " << round_num << std::endl;
496- start = std::chrono::steady_clock::now ();
496+ // start = std::chrono::steady_clock::now();
497497 modified = perform_boruvka_round (round_num, merge_instr, global_merges);
498498 // std::cout << " perform_boruvka_round = "
499499 // << std::chrono::duration<double>(std::chrono::steady_clock::now() - start).count()
@@ -502,7 +502,7 @@ void CCSketchAlg::boruvka_emulation() {
502502 if (!modified) break ;
503503
504504 // calculate updated merge instructions for next round
505- start = std::chrono::steady_clock::now ();
505+ // start = std::chrono::steady_clock::now();
506506 create_merge_instructions (merge_instr);
507507 // std::cout << " create_merge_instructions = "
508508 // << std::chrono::duration<double>(std::chrono::steady_clock::now() - start).count()
You can’t perform that action at this time.
0 commit comments