Skip to content

Commit 4f3745f

Browse files
committed
move FactorSieve main() method to test scope
1 parent a84adb3 commit 4f3745f

File tree

2 files changed

+59
-34
lines changed

2 files changed

+59
-34
lines changed

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

+1-34
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
*/
1414
package de.tilman_neumann.jml.factor;
1515

16-
import java.math.BigInteger;
1716
import java.util.HashMap;
1817
import java.util.Map;
1918

@@ -22,8 +21,6 @@
2221

2322
import de.tilman_neumann.jml.primes.exact.SegmentedSieve;
2423
import de.tilman_neumann.jml.primes.exact.SieveCallback;
25-
import de.tilman_neumann.util.Ensure;
26-
import de.tilman_neumann.util.ConfigUtil;
2724
import de.tilman_neumann.util.SortedMultiset;
2825
import de.tilman_neumann.util.SortedMultiset_BottomUp;
2926

@@ -104,7 +101,7 @@ public Map<Long, SortedMultiset<Long>> getFactorizations() {
104101
return factorizations;
105102
}
106103

107-
private static long computeProduct(SortedMultiset<Long> factors) {
104+
public static long computeProduct(SortedMultiset<Long> factors) {
108105
if (factors == null) return 0;
109106

110107
long result = 1;
@@ -114,34 +111,4 @@ private static long computeProduct(SortedMultiset<Long> factors) {
114111
}
115112
return result;
116113
}
117-
118-
public static void main(String[] args) {
119-
ConfigUtil.initProject();
120-
121-
long start = 99000000, limit = 100000000;
122-
FactorSieve sieve = new FactorSieve(start, limit);
123-
long t0 = System.currentTimeMillis();
124-
sieve.sieve();
125-
long t1 = System.currentTimeMillis();
126-
LOG.info("Factoring all numbers from " + start + " to " + limit + " using the sieve took " + (t1-t0) + " milliseconds.");
127-
if (DEBUG) {
128-
for (long n=start; n<=limit; n++) { // n==1 gives null factors
129-
SortedMultiset<Long> factors = sieve.getFactorization(n);
130-
LOG.info(n + " = " + factors);
131-
if (n>1) {
132-
long test = computeProduct(factors);
133-
Ensure.ensureEquals(n, test);
134-
}
135-
}
136-
}
137-
138-
// without batch
139-
FactorAlgorithm factorizer = FactorAlgorithm.getDefault();
140-
long t2 = System.currentTimeMillis();
141-
for (long n=start; n<=limit; n++) {
142-
factorizer.factor(BigInteger.valueOf(n));
143-
}
144-
long t3 = System.currentTimeMillis();
145-
LOG.info("Factoring all numbers from " + start + " to " + limit + " individually took " + (t3-t2) + " milliseconds.");
146-
}
147114
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
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+
import de.tilman_neumann.util.Ensure;
23+
import de.tilman_neumann.util.SortedMultiset;
24+
25+
public class FactorSieveDemo {
26+
private static final Logger LOG = LogManager.getLogger(FactorSieveDemo.class);
27+
private static final boolean DEBUG = false;
28+
29+
public static void main(String[] args) {
30+
ConfigUtil.initProject();
31+
32+
long start = 99000000, limit = 100000000;
33+
FactorSieve sieve = new FactorSieve(start, limit);
34+
long t0 = System.currentTimeMillis();
35+
sieve.sieve();
36+
long t1 = System.currentTimeMillis();
37+
LOG.info("Factoring all numbers from " + start + " to " + limit + " using the sieve took " + (t1-t0) + " milliseconds.");
38+
if (DEBUG) {
39+
for (long n=start; n<=limit; n++) { // n==1 gives null factors
40+
SortedMultiset<Long> factors = sieve.getFactorization(n);
41+
LOG.info(n + " = " + factors);
42+
if (n>1) {
43+
long test = FactorSieve.computeProduct(factors);
44+
Ensure.ensureEquals(n, test);
45+
}
46+
}
47+
}
48+
49+
// without batch
50+
FactorAlgorithm factorizer = FactorAlgorithm.getDefault();
51+
long t2 = System.currentTimeMillis();
52+
for (long n=start; n<=limit; n++) {
53+
factorizer.factor(BigInteger.valueOf(n));
54+
}
55+
long t3 = System.currentTimeMillis();
56+
LOG.info("Factoring all numbers from " + start + " to " + limit + " individually took " + (t3-t2) + " milliseconds.");
57+
}
58+
}

0 commit comments

Comments
 (0)