From 9928031275417681e4521ae3089740f20574bf5a Mon Sep 17 00:00:00 2001 From: "siyuanzhang.zsy" Date: Wed, 19 Jul 2023 10:03:24 +0800 Subject: [PATCH] use getter method of nbr to be consistent of projected fragment --- examples/analytical_apps/cdlp/cdlp_opt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/analytical_apps/cdlp/cdlp_opt.h b/examples/analytical_apps/cdlp/cdlp_opt.h index 2f9e65be..597c6c65 100644 --- a/examples/analytical_apps/cdlp/cdlp_opt.h +++ b/examples/analytical_apps/cdlp/cdlp_opt.h @@ -183,7 +183,7 @@ class CDLPOpt : public ParallelAppBase, 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();