Skip to content

Commit dbbe96c

Browse files
committed
Fix formatting.
1 parent db0e37a commit dbbe96c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tools/dist-graph-convert/dist-graph-convert-helpers.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -450,8 +450,8 @@ void receiveAssignedEdges(std::atomic<uint64_t>& edgesToReceive,
450450
std::vector<uint32_t> recvDataVector;
451451

452452
while (edgesToReceive) {
453-
decltype(
454-
net.recieveTagged(galois::runtime::evilPhase, nullptr)) rBuffer;
453+
decltype(net.recieveTagged(galois::runtime::evilPhase,
454+
nullptr)) rBuffer;
455455
rBuffer = net.recieveTagged(galois::runtime::evilPhase, nullptr);
456456

457457
// the buffer will have edge data as well if localsrctodata is

tools/graph-convert/graph-convert.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -687,7 +687,7 @@ struct Mtx2Gr : public HasNoVoidSpecialization {
687687
}
688688

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

0 commit comments

Comments
 (0)