Skip to content
This repository was archived by the owner on Oct 10, 2025. It is now read-only.

Commit bdc8bc0

Browse files
committed
ci: auto code format
1 parent 4ad4959 commit bdc8bc0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

extension/algo/src/function/betweenness_centrality.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,8 @@ class FwdTraverse : public EdgeCompute {
166166
auto nbrDist = BCFwdData::PathData::INF;
167167
// If we find this node for the first time, update the level
168168
// it was found at and add it to the next frontier.
169-
if (data.nodePathData[nbrNodeID.offset].pathScore.compare_exchange_strong(nbrDist, newDist)) {
169+
if (data.nodePathData[nbrNodeID.offset].pathScore.compare_exchange_strong(nbrDist,
170+
newDist)) {
170171
auto newlvl = data.levels[boundNodeID.offset].level.load() + 1;
171172
data.levels[nbrNodeID.offset].level.store(newlvl);
172173
result.push_back(nbrNodeID);

0 commit comments

Comments
 (0)