Skip to content

Commit

Permalink
Use getter method of nbr to be consistent of projected fragment (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
siyuan0322 committed Jul 19, 2023
1 parent 8add4b3 commit 45281c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/analytical_apps/cdlp/cdlp_opt.h
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ class CDLPOpt : public ParallelAppBase<FRAG_T, CDLPOptContext<FRAG_T, LABEL_T>,
ctx.labels[u] = msg;
auto ie = frag.GetIncomingAdjList(u);
for (auto& e : ie) {
ctx.potential_change.Insert(e.neighbor);
ctx.potential_change.Insert(e.get_neighbor());
}
});
messages.ForceContinue();
Expand Down

0 comments on commit 45281c4

Please sign in to comment.