Skip to content

Commit fb8e629

Browse files
committed
test SquFoF limits again +++ increase numThreads for CombinedFactorAlg.
1 parent ab44e4c commit fb8e629

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public class CombinedFactorAlgorithmTest {
3535
@BeforeClass
3636
public static void setup() {
3737
ConfigUtil.initProject();
38-
int numThreads = 2; // be cautious regarding what github CI supports
38+
int numThreads = 4; // be cautious regarding what github CI supports
3939
factorizer = new CombinedFactorAlgorithm(numThreads, null, true);
4040
}
4141

src/test/java/de/tilman_neumann/jml/factor/squfof/SquFoF31PreloadTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public void testSomeParticularNumbers() {
5454
public void testRandomComposites() {
5555
SecureRandom RNG = new SecureRandom();
5656
int count = 10000;
57-
for (int bits=40; bits<53; bits++) { // not sure if 53 bit numbers are completely safe
57+
for (int bits=40; bits<54; bits++) { // not sure if 53 bit numbers are completely safe
5858
LOG.info("Testing " + count + " random numbers with " + bits + " bit...");
5959
int failCount = 0;
6060
for (int i=0; i<count; i++) {

src/test/java/de/tilman_neumann/jml/factor/squfof/SquFoF31Test.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public void testSomeParticularNumbers() {
5454
public void testRandomComposites() {
5555
SecureRandom RNG = new SecureRandom();
5656
int count = 10000;
57-
for (int bits=40; bits<53; bits++) { // not sure if 53 bit numbers are completely safe
57+
for (int bits=40; bits<54; bits++) { // not sure if 53 bit numbers are completely safe
5858
LOG.info("Testing " + count + " random numbers with " + bits + " bit...");
5959
int failCount = 0;
6060
for (int i=0; i<count; i++) {

src/test/java/de/tilman_neumann/jml/factor/squfof/SquFoF63Test.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public void testSomeParticularNumbers() {
5454
public void testRandomComposites() {
5555
SecureRandom RNG = new SecureRandom();
5656
int count = 10000;
57-
for (int bits=50; bits<64; bits++) { // not sure if 64 bit numbers are completely safe
57+
for (int bits=50; bits<65; bits++) { // not sure if 64 bit numbers are completely safe
5858
LOG.info("Testing " + count + " random numbers with " + bits + " bit...");
5959
int failCount = 0;
6060
for (int i=0; i<count; i++) {

0 commit comments

Comments
 (0)