Skip to content
This repository was archived by the owner on Apr 22, 2020. It is now read-only.

Commit 14d220c

Browse files
authored
put louvain concurrency to 1 until we have a parallel implementation (#818)
1 parent 313f4a5 commit 14d220c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

algo/src/main/java/org/neo4j/graphalgo/LouvainProc.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public Stream<LouvainResult> louvain(
8888
return Stream.of(LouvainResult.EMPTY);
8989
}
9090

91-
final Louvain louvain = new Louvain(graph, Pools.DEFAULT, configuration.getConcurrency(), AllocationTracker.create())
91+
final Louvain louvain = new Louvain(graph, Pools.DEFAULT, 1, AllocationTracker.create())
9292
.withProgressLogger(ProgressLogger.wrap(log, "Louvain"))
9393
.withTerminationFlag(TerminationFlag.wrap(transaction));
9494

0 commit comments

Comments
 (0)