Skip to content

Commit 09bd341

Browse files
committed
update class javadoc and increase upper bound for small composites test
1 parent f9a3e53 commit 09bd341

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/de/tilman_neumann/jml/factor/tdiv/TDivTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

3838
/**
3939
* Tests for trial division with BigInteger arguments.
40-
* This test is quite expensive for github CI because of the SMALL_PRIMES_ARRAY initialization;
40+
* This test is quite expensive for github CI because of the SMALL_PRIMES initialization;
4141
* but since it it used in CombinedFactorAlgorithm, we keep it.
4242
*
4343
* @author Tilman Neumann
@@ -57,7 +57,7 @@ public static void setup() {
5757

5858
@Test
5959
public void testSmallestComposites() {
60-
List<Integer> fails = FactorTestInfrastructure.testSmallComposites(10000, tdiv);
60+
List<Integer> fails = FactorTestInfrastructure.testSmallComposites(100000, tdiv);
6161
assertEquals("Failed to factor n = " + fails, 0, fails.size());
6262
}
6363

0 commit comments

Comments
 (0)