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