Skip to content

Commit f344fa8

Browse files
committed
move performance test to test scope
1 parent 2a3e9b4 commit f344fa8

File tree

3 files changed

+63
-35
lines changed

3 files changed

+63
-35
lines changed

src/main/java/de/tilman_neumann/jml/sequence/SquarefreeSequence.java

-20
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,13 @@
1717

1818
import java.math.BigInteger;
1919

20-
import org.apache.logging.log4j.Logger;
21-
import org.apache.logging.log4j.LogManager;
22-
2320
import de.tilman_neumann.jml.primes.exact.AutoExpandingPrimesArray;
24-
import de.tilman_neumann.util.ConfigUtil;
2521

2622
/**
2723
* Sequence of multiplier * {squarefree numbers 1,2,3,5,6,7,10,11,13,...}, BigInteger implementation.
2824
* @author Tilman Neumann
2925
*/
3026
public class SquarefreeSequence implements NumberSequence<BigInteger> {
31-
private static final Logger LOG = LogManager.getLogger(SquarefreeSequence.class);
32-
3327
private AutoExpandingPrimesArray primesArray = AutoExpandingPrimesArray.get();
3428

3529
private BigInteger multiplier;
@@ -81,18 +75,4 @@ public BigInteger next() {
8175
}
8276
return ret.multiply(multiplier);
8377
}
84-
85-
// standalone test
86-
public static void main(String[] args) {
87-
ConfigUtil.initProject();
88-
SquarefreeSequence seqGen = new SquarefreeSequence(I_1);
89-
long start = System.currentTimeMillis();
90-
seqGen.reset();
91-
for (int i=1; i<=1000000; i++) {
92-
@SuppressWarnings("unused")
93-
BigInteger squarefree = seqGen.next();
94-
//LOG.info("squarefree(" + i + ") = " + squarefree);
95-
}
96-
LOG.info("computation took " + (System.currentTimeMillis()-start) + " ms");
97-
}
9878
}

src/main/java/de/tilman_neumann/jml/sequence/SquarefreeSequence63.java

-15
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,13 @@
1313
*/
1414
package de.tilman_neumann.jml.sequence;
1515

16-
import org.apache.logging.log4j.Logger;
17-
import org.apache.logging.log4j.LogManager;
18-
1916
import de.tilman_neumann.jml.primes.exact.AutoExpandingPrimesArray;
20-
import de.tilman_neumann.util.ConfigUtil;
2117

2218
/**
2319
* Sequence of multiplier * {squarefree numbers 1,2,3,5,6,7,10,11,13,...}, long implementation.
2420
* @author Tilman Neumann
2521
*/
2622
public class SquarefreeSequence63 implements NumberSequence<Long> {
27-
private static final Logger LOG = LogManager.getLogger(SquarefreeSequence63.class);
2823

2924
private AutoExpandingPrimesArray primesArray = AutoExpandingPrimesArray.get();
3025

@@ -70,14 +65,4 @@ public Long next() {
7065
}
7166
return ret * multiplier;
7267
}
73-
74-
// standalone test
75-
public static void main(String[] args) {
76-
ConfigUtil.initProject();
77-
SquarefreeSequence63 seqGen = new SquarefreeSequence63(1);
78-
seqGen.reset();
79-
for (int i=1; i<=1000; i++) {
80-
LOG.info("squarefree(" + i + ") = " + seqGen.next());
81-
}
82-
}
8368
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
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.sequence;
15+
16+
import static de.tilman_neumann.jml.base.BigIntConstants.*;
17+
18+
import java.math.BigInteger;
19+
20+
import org.apache.logging.log4j.Logger;
21+
import org.apache.logging.log4j.LogManager;
22+
23+
import de.tilman_neumann.util.ConfigUtil;
24+
25+
/**
26+
* Performance comparison of generators for squarefree numbers 1,2,3,5,6,7,10,11,13,...
27+
* @author Tilman Neumann
28+
*/
29+
public class SquarefreeSequencePerformanceTest {
30+
private static final Logger LOG = LogManager.getLogger(SquarefreeSequencePerformanceTest.class);
31+
private static final boolean DEBUG = false;
32+
private static final int NCOUNT = 1000000;
33+
34+
private static void testBigIntegerImplementation() {
35+
SquarefreeSequence seqGen = new SquarefreeSequence(I_1);
36+
seqGen.reset();
37+
for (int i=1; i<=NCOUNT; i++) {
38+
BigInteger squarefree = seqGen.next();
39+
if (DEBUG) LOG.info("squarefree(" + i + ") = " + squarefree);
40+
}
41+
}
42+
43+
private static void testLongImplementation() {
44+
SquarefreeSequence63 seqGen = new SquarefreeSequence63(1);
45+
seqGen.reset();
46+
for (int i=1; i<=NCOUNT; i++) {
47+
long squarefree = seqGen.next();
48+
if (DEBUG) LOG.info("squarefree(" + i + ") = " + squarefree);
49+
}
50+
}
51+
52+
public static void main(String[] args) {
53+
ConfigUtil.initProject();
54+
55+
long start = System.currentTimeMillis();
56+
testBigIntegerImplementation();
57+
LOG.info("BigInteger computation took " + (System.currentTimeMillis()-start) + " ms");
58+
59+
start = System.currentTimeMillis();
60+
testLongImplementation();
61+
LOG.info("long computation took " + (System.currentTimeMillis()-start) + " ms");
62+
}
63+
}

0 commit comments

Comments
 (0)