|
| 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