Skip to content

Commit ad2974c

Browse files
committed
convert MPI powermap test into unit test
1 parent c58c7ac commit ad2974c

File tree

2 files changed

+76
-31
lines changed

2 files changed

+76
-31
lines changed

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

-31
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,11 @@
1515

1616
import java.math.BigInteger;
1717
import java.util.Map;
18-
import java.util.SortedSet;
1918

2019
import org.apache.logging.log4j.Logger;
2120
import org.apache.logging.log4j.LogManager;
2221

23-
import de.tilman_neumann.jml.Divisors;
2422
import de.tilman_neumann.jml.factor.FactorAlgorithm;
25-
import de.tilman_neumann.util.ConfigUtil;
2623
import de.tilman_neumann.util.SortedMultiset;
2724

2825
import static de.tilman_neumann.jml.base.BigIntConstants.*;
@@ -89,32 +86,4 @@ public static PrimePowers valueOf(BigInteger n) {
8986
public BigInteger getPrime(int index) {
9087
return primes[index];
9188
}
92-
93-
/**
94-
* Check relationship between set of divisors and powermap.
95-
* Hypothesis confirmed from 0..203846.
96-
*
97-
* @param args ignored
98-
*/
99-
public static void main(String[] args) {
100-
ConfigUtil.initProject();
101-
for (int n=0; n<1000; n++) {
102-
BigInteger bigN = BigInteger.valueOf(n);
103-
SortedSet<BigInteger> divisors = Divisors.getDivisors(bigN);
104-
int numberOfDivisors = divisors.size();
105-
PrimePowers primePowers = PrimePowers_DefaultImpl.valueOf(bigN);
106-
MpiPowerMap powerMap = MpiPowerMap.create(primePowers);
107-
int powerMapSize = powerMap.size();
108-
LOG.info("n=" + n + " has " + numberOfDivisors + " divisors, and power map has " + powerMapSize + " entries");
109-
int correctedPowerMapSize = n>0 ? powerMapSize + primePowers.getDim() + 1 : 0;
110-
LOG.info("correctedPowerMapSize = " + correctedPowerMapSize);
111-
// the power map is missing the unit entries (only one prime) and the empty entry!
112-
if (numberOfDivisors!=correctedPowerMapSize) {
113-
LOG.info("n = " + n);
114-
LOG.info("divisors = " + divisors);
115-
LOG.info("powerMap = " + powerMap);
116-
throw new IllegalStateException("my hypothesis is wrong for n=" + n);
117-
}
118-
}
119-
}
12089
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
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.math.BigInteger;
17+
import java.util.SortedSet;
18+
19+
import org.apache.logging.log4j.Logger;
20+
import org.junit.BeforeClass;
21+
import org.junit.Test;
22+
import org.apache.logging.log4j.LogManager;
23+
24+
import de.tilman_neumann.jml.Divisors;
25+
import de.tilman_neumann.util.ConfigUtil;
26+
27+
import static org.junit.Assert.assertEquals;
28+
29+
public class MpiPowerMapHypothesisTest {
30+
31+
private static final Logger LOG = LogManager.getLogger(MpiPowerMapHypothesisTest.class);
32+
private static final boolean LOG_ALL = false;
33+
private static final boolean LOG_FEW = false;
34+
35+
@BeforeClass
36+
public static void setup() {
37+
ConfigUtil.initProject();
38+
}
39+
40+
/**
41+
* Test a relationship between the set of divisors of some N and the "MPI powermap" for that N.
42+
* The hypothesis is: The number of divisors of N == the number of entries in the powermap + the number of unit entries (prime factors) + 1 (for the empty set)
43+
*
44+
* I confirmed the hypothesis for N from 0 to 60.000.000 in a 30-minute-run on a Ryzen 3900X.
45+
*
46+
* The sequence of the number of divisors is A000005(n) = the number of divisors of n =
47+
* (0,) 1, 2, 2, 3, 2, 4, 2, 4, 3, 4, 2, 6, 2, 4, 4, 5, 2, 6, 2, 6, 4, 4, 2, 8, 3, 4, 4, 6, 2, 8, 2, 6, 4, 4, 4, 9, 2, 4, 4, 8, 2, 8, 2, 6, 6, 4, 2, 10, 3, 6, ...
48+
* and the sequence of power map entries is A055212(n) = Number of composite divisors of n =
49+
* (0,) 0, 0, 0, 1, 0, 1, 0, 2, 1, 1, 0, 3, 0, 1, 1, 3, 0, 3, 0, 3, 1, 1, 0, 5, 1, 1, 2, 3, 0, 4, 0, 4, 1, 1, 1, 6, 0, 1, 1, 5, 0, 4, 0, 3, 3, 1, 0, 7, 1, 3, ...
50+
*/
51+
@Test
52+
public void testPowerMapHypothesis() {
53+
ConfigUtil.initProject();
54+
for (int n=0; n<100000; n++) {
55+
BigInteger bigN = BigInteger.valueOf(n);
56+
SortedSet<BigInteger> divisors = Divisors.getDivisors(bigN);
57+
int numberOfDivisors = divisors.size();
58+
PrimePowers primePowers = PrimePowers_DefaultImpl.valueOf(bigN);
59+
MpiPowerMap powerMap = MpiPowerMap.create(primePowers);
60+
int powerMapSize = powerMap.size();
61+
if (LOG_ALL) {
62+
LOG.debug("n=" + n + " has " + numberOfDivisors + " divisors, and power map has " + powerMapSize + " entries");
63+
} else if (LOG_FEW) {
64+
if (n%10000 == 0) LOG.debug("n=" + n + " has " + numberOfDivisors + " divisors, and power map has " + powerMapSize + " entries");
65+
}
66+
int correctedPowerMapSize = n>0 ? powerMapSize + primePowers.getDim() + 1 : 0;
67+
// the power map is missing the unit entries (only one prime) and the empty entry!
68+
if (numberOfDivisors != correctedPowerMapSize) {
69+
LOG.error("n = " + n + " failed powerMap hypothesis: numberOfDivisors = " + numberOfDivisors + ", correctedPowerMapSize = " + correctedPowerMapSize);
70+
LOG.error("divisors = " + divisors);
71+
LOG.error("powerMap = " + powerMap);
72+
}
73+
assertEquals(numberOfDivisors, correctedPowerMapSize);
74+
}
75+
}
76+
}

0 commit comments

Comments
 (0)