@@ -35,7 +35,7 @@ public class CombinedFactorAlgorithmTest {
35
35
@ BeforeClass
36
36
public static void setup () {
37
37
ConfigUtil .initProject ();
38
- int numThreads = 4 ; // be cautious regarding what github CI supports
38
+ int numThreads = 2 ; // be cautious regarding what github CI supports
39
39
factorizer = new CombinedFactorAlgorithm (numThreads , null , true );
40
40
}
41
41
@@ -47,9 +47,9 @@ public void testSomeNumbers() {
47
47
assertFactorizationSuccess ("874186654300294020965320730991996026550891341278308" , "2^2 * 3 * 471997 * 654743 * 2855761 * 79833227 * 982552477 * 1052328969055591" ); // 170 bit
48
48
assertFactorizationSuccess ("11111111111111111111111111155555555555111111111111111" , "67 * 157 * 1056289676880987842105819104055096069503860738769" ); // 173 bit
49
49
assertFactorizationSuccess ("1388091470446411094380555803943760956023126025054082930201628998364642" , "2 * 3 * 1907 * 1948073 * 1239974331653 * 50222487570895420624194712095309533522213376829" ); // 230 bit
50
+ // 236 bit, takes ~ 8 seconds with 2 threads
51
+ assertFactorizationSuccess ("99999999999999999999999999999999999999999999999999999999999999999999999" , "3^2 * 241573142393627673576957439049 * 45994811347886846310221728895223034301839" );
50
52
if (RUN_SLOW_TESTS_TOO ) {
51
- // 236 bit, takes ~ 8 seconds with 2 threads
52
- assertFactorizationSuccess ("99999999999999999999999999999999999999999999999999999999999999999999999" , "3^2 * 241573142393627673576957439049 * 45994811347886846310221728895223034301839" );
53
53
// 263 bit bit, takes ~ 52 seconds with 2 threads
54
54
assertFactorizationSuccess ("10000000000000000000000000000000000000000000000000000000000000000000000000005923" , "1333322076518899001350381760807974795003 * 7500063320115780212377802894180923803641" );
55
55
// 280 bit bit, takes ~ 158 seconds with 2 threads
0 commit comments