Skip to content

Commit e8ba884

Browse files
committed
move IntegerPartitionGeneratorRunner to test scope
1 parent ad2974c commit e8ba884

File tree

2 files changed

+76
-40
lines changed

2 files changed

+76
-40
lines changed

src/main/java/de/tilman_neumann/jml/partitions/IntegerPartitionGenerator.java

+7-40
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@
1313
*/
1414
package de.tilman_neumann.jml.partitions;
1515

16-
import java.io.BufferedReader;
17-
import java.io.IOException;
18-
import java.io.InputStreamReader;
1916
import java.util.ArrayDeque;
2017
import java.util.Collections;
2118
import java.util.SortedSet;
@@ -24,8 +21,6 @@
2421
import org.apache.logging.log4j.Logger;
2522
import org.apache.logging.log4j.LogManager;
2623

27-
import de.tilman_neumann.util.ConfigUtil;
28-
2924
/**
3025
* Integer partition generator, derived from fast multipartite number partition generator.
3126
* @author Tilman Neumann
@@ -112,6 +107,10 @@ public int[] next() {
112107
return result;
113108
}
114109

110+
public int getMaxStackSize() {
111+
return maxStackSize;
112+
}
113+
115114
/**
116115
* Computes the partitions of the given number.
117116
* This is much slower than iterating over the results of the next() method and may give
@@ -134,45 +133,13 @@ public static SortedSet<IntegerPartition> partitionsOf(int n) {
134133
return partitions;
135134
}
136135

137-
private static void printNumberOfPartitions(int n) {
138-
long start = System.currentTimeMillis();
136+
public static long getNumberOfPartitions(int n) {
139137
IntegerPartitionGenerator partGen = new IntegerPartitionGenerator(n);
140-
int count = 0;
138+
long count = 0;
141139
while (partGen.hasNext()) {
142140
partGen.next();
143141
count++;
144142
}
145-
LOG.debug("maxStackSize = " + partGen.maxStackSize);
146-
LOG.info(n + " has " + count + " partitions (computed in " + (System.currentTimeMillis()-start) + "ms)");
143+
return count;
147144
}
148-
149-
/**
150-
* Test
151-
* @param args ignored
152-
*/
153-
public static void main(String[] args) {
154-
ConfigUtil.initProject();
155-
156-
while(true) {
157-
String input;
158-
try {
159-
LOG.info("\nPlease insert (small) integer number:");
160-
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
161-
String line = in.readLine();
162-
input = line.trim();
163-
//LOG.debug("input = " + input);
164-
} catch (IOException ioe) {
165-
LOG.error("io-error occurring on input: " + ioe.getMessage());
166-
continue;
167-
}
168-
try {
169-
int n = Integer.valueOf(input);
170-
printNumberOfPartitions(n);
171-
//SortedSet<IntegerPartition> partitions = partitionsOf(n);
172-
//LOG.debug(n + " has " + partitions.size() + " partitions: " + partitions);
173-
} catch (NumberFormatException nfe) {
174-
LOG.error("input " + input + " is not an integer");
175-
}
176-
} // next input...
177-
}
178145
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
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.partitions;
15+
16+
import java.io.BufferedReader;
17+
import java.io.IOException;
18+
import java.io.InputStreamReader;
19+
import java.util.SortedSet;
20+
21+
import org.apache.logging.log4j.Logger;
22+
import org.apache.logging.log4j.LogManager;
23+
24+
import de.tilman_neumann.util.ConfigUtil;
25+
26+
/**
27+
* Integer partition generator test runner.
28+
* @author Tilman Neumann
29+
*/
30+
public class IntegerPartitionGeneratorRunner {
31+
32+
private static final Logger LOG = LogManager.getLogger(IntegerPartitionGeneratorRunner.class);
33+
34+
private static final boolean DEBUG = false;
35+
36+
/**
37+
* Test
38+
* @param args ignored
39+
*/
40+
public static void main(String[] args) {
41+
ConfigUtil.initProject();
42+
43+
while(true) {
44+
String input;
45+
try {
46+
LOG.info("\nPlease insert (small) integer number:");
47+
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
48+
String line = in.readLine();
49+
input = line.trim();
50+
//LOG.debug("input = " + input);
51+
} catch (IOException ioe) {
52+
LOG.error("io-error occurring on input: " + ioe.getMessage());
53+
continue;
54+
}
55+
try {
56+
int n = Integer.valueOf(input);
57+
long start = System.currentTimeMillis();
58+
long count = IntegerPartitionGenerator.getNumberOfPartitions(n);
59+
LOG.info(n + " has " + count + " partitions (computed in " + (System.currentTimeMillis()-start) + "ms)");
60+
if (DEBUG) {
61+
SortedSet<IntegerPartition> partitions = IntegerPartitionGenerator.partitionsOf(n);
62+
LOG.debug(n + " has " + partitions.size() + " partitions: " + partitions);
63+
}
64+
} catch (NumberFormatException nfe) {
65+
LOG.error("input " + input + " is not an integer");
66+
}
67+
} // next input...
68+
}
69+
}

0 commit comments

Comments
 (0)