Skip to content

Commit

Permalink
Don't commit a print
Browse files Browse the repository at this point in the history
  • Loading branch information
Dtenwolde committed Dec 18, 2024
1 parent b3417f6 commit 2dd4b48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/operator/task/shortest_path_task.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ void ShortestPathTask::IterativePath() {

// Main processing loop
while (has_tasks) {
std::cout << worker_id << " " << left << " " << right << std::endl;
// std::cout << worker_id << " " << left << " " << right << std::endl;

for (auto i = left; i < right; i++) {
if (visit[i].any()) {
Expand Down

0 comments on commit 2dd4b48

Please sign in to comment.