Skip to content

Commit f422f61

Browse files
committed
move semiprime generator to test scope
1 parent 37d0385 commit f422f61

File tree

2 files changed

+41
-15
lines changed

2 files changed

+41
-15
lines changed

src/main/java/de/tilman_neumann/jml/factor/TestsetGenerator.java

+2-15
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,15 @@
2222

2323
import de.tilman_neumann.jml.base.Rng;
2424
import de.tilman_neumann.jml.primes.probable.BPSWTest;
25-
import de.tilman_neumann.util.ConfigUtil;
2625

2726
import static de.tilman_neumann.jml.base.BigIntConstants.*;
2827

2928
/**
3029
* Generation of random N that are not too easy to factor.
3130
* The standard case are semiprimes N where the smaller factor of N is >= cbrt(N).
3231
*
32+
* This class should stay in the Maven main scope because it is of use for referencing projects.
33+
*
3334
* @author Tilman Neumann
3435
*/
3536
public class TestsetGenerator {
@@ -132,18 +133,4 @@ public static BigInteger[] generate(int N_count, int bits, TestNumberNature mode
132133
}
133134
return NArray;
134135
}
135-
136-
/**
137-
* A simple main function to generate hard semi-primes.
138-
* @param args ignored
139-
*/
140-
public static void main(String[] args) {
141-
ConfigUtil.initProject();
142-
143-
for (int bits = 330; bits<=450; bits+=10) {
144-
BigInteger num = generate(1, bits, TestNumberNature.QUITE_HARD_SEMIPRIMES)[0];
145-
LOG.info("// " + bits + " bits:");
146-
LOG.info(num);
147-
}
148-
}
149136
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
/*
2+
* java-math-library is a Java library focused on number theory, but not necessarily limited to it. It is based on the PSIQS 4.0 factoring project.
3+
* Copyright (C) 2018-2024 Tilman Neumann - [email protected]
4+
*
5+
* This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License
6+
* as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.
7+
*
8+
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
9+
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
10+
*
11+
* You should have received a copy of the GNU General Public License along with this program;
12+
* if not, see <http://www.gnu.org/licenses/>.
13+
*/
14+
package de.tilman_neumann.jml.factor;
15+
16+
import java.math.BigInteger;
17+
18+
import org.apache.logging.log4j.LogManager;
19+
import org.apache.logging.log4j.Logger;
20+
21+
import de.tilman_neumann.util.ConfigUtil;
22+
23+
public class HardSemiprimeGenerator {
24+
private static final Logger LOG = LogManager.getLogger(HardSemiprimeGenerator.class);
25+
26+
/**
27+
* A simple main function to generate hard semi-primes.
28+
* @param args ignored
29+
*/
30+
public static void main(String[] args) {
31+
ConfigUtil.initProject();
32+
33+
for (int bits = 330; bits<=450; bits+=10) {
34+
BigInteger num = TestsetGenerator.generate(1, bits, TestNumberNature.QUITE_HARD_SEMIPRIMES)[0];
35+
LOG.info("// " + bits + " bits:");
36+
LOG.info(num);
37+
}
38+
}
39+
}

0 commit comments

Comments
 (0)