Skip to content

Commit

Permalink
minor simplification
Browse files Browse the repository at this point in the history
  • Loading branch information
TilmanNeumann committed Dec 31, 2024
1 parent 4ef5e5e commit 3980604
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@ public static void setup() {
// gitgub CI results for the 236 bit test number:
// 1 thread -> 22s, 2 threads -> 12s, 4 threads -> 14s.
// Using 2 threads looks best so far.
int numThreads = 2;
factorizer = new CombinedFactorAlgorithm(numThreads, null, true);
factorizer = new CombinedFactorAlgorithm(2, null, true);
}

@Test
Expand Down

0 comments on commit 3980604

Please sign in to comment.