Skip to content

Commit 3980604

Browse files
committed
minor simplification
1 parent 4ef5e5e commit 3980604

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/test/java/de/tilman_neumann/jml/factor/CombinedFactorAlgorithmTest.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@ public static void setup() {
3838
// gitgub CI results for the 236 bit test number:
3939
// 1 thread -> 22s, 2 threads -> 12s, 4 threads -> 14s.
4040
// Using 2 threads looks best so far.
41-
int numThreads = 2;
42-
factorizer = new CombinedFactorAlgorithm(numThreads, null, true);
41+
factorizer = new CombinedFactorAlgorithm(2, null, true);
4342
}
4443

4544
@Test

0 commit comments

Comments
 (0)