Skip to content

Commit

Permalink
Fix formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
bozhiyou committed Aug 28, 2023
1 parent db0e37a commit b698f8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/graph-convert/graph-convert.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,7 @@ struct Mtx2Gr : public HasNoVoidSpecialization {
}

for (size_t edge_num = 0; edge_num < nedges; ++edge_num) {
if ( (nedges / 500 > 0) && (edge_num % (nedges / 500)) == 0) {
if ((nedges / 500 > 0) && (edge_num % (nedges / 500)) == 0) {
printf("Phase %d: current edge progress %lf%%\n", phase,
((double)edge_num / nedges) * 100);
}
Expand Down

0 comments on commit b698f8c

Please sign in to comment.