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