Skip to content

Commit

Permalink
minor: after change
Browse files Browse the repository at this point in the history
  • Loading branch information
IoannisPanagiotas committed Oct 2, 2023
1 parent 660823a commit 638edcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion algo/src/main/java/org/neo4j/gds/scc/Scc.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public Scc(
this.connectedComponents = HugeLongArray.newArray(nodeCount);
this.index = HugeLongArray.newArray(nodeCount);
this.stack = HugeLongArrayStack.newStack(nodeCount);
this.todo = new PagedLongStack(nodeCount); //can be as high as `2 * graph.relationshipsCount()` if we are unlucky...
this.todo = new PagedLongStack(nodeCount); //can be as high as `graph.relationshipsCount()` if we are unlucky...
this.visited = new BitSet(nodeCount);
}

Expand Down

0 comments on commit 638edcb

Please sign in to comment.