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

Commit

Permalink
put louvain concurrency to 1 until we have a parallel implementation (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
mneedham committed Feb 18, 2019
1 parent 4c37097 commit 4e2f0d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion algo/src/main/java/org/neo4j/graphalgo/LouvainProc.java
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public Stream<LouvainResult> louvain(
return Stream.of(LouvainResult.EMPTY);
}

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

Expand Down

0 comments on commit 4e2f0d7

Please sign in to comment.