13
13
*/
14
14
package de .tilman_neumann .jml .partitions ;
15
15
16
- import java .io .BufferedReader ;
17
- import java .io .IOException ;
18
- import java .io .InputStreamReader ;
19
16
import java .math .BigInteger ;
20
17
import java .util .ArrayDeque ;
18
+ import java .util .Arrays ;
21
19
import java .util .Collections ;
22
20
import java .util .Map ;
23
21
import java .util .SortedSet ;
26
24
import org .apache .logging .log4j .Logger ;
27
25
import org .apache .logging .log4j .LogManager ;
28
26
29
- import de .tilman_neumann .util .ConfigUtil ;
30
-
31
27
/**
32
28
* A generator for the additive partitions of multipartite numbers.
33
29
*
@@ -53,6 +49,8 @@ public class MpiPartitionGenerator implements Generator<Mpi[]> {
53
49
54
50
private static final Logger LOG = LogManager .getLogger (MpiPartitionGenerator .class );
55
51
52
+ private static final boolean DEBUG = false ;
53
+
56
54
/** Internal class for stack elements. */
57
55
private static class MpiPartitionStackElem {
58
56
private Mpi rest ;
@@ -76,10 +74,12 @@ private MpiPartitionStackElem(Mpi[] prefix, Mpi rest) {
76
74
* @param q
77
75
*/
78
76
public MpiPartitionGenerator (Mpi q ) {
79
- //int dim = q.getDim(); // dimension of the multipartite numbers
80
- //LOG.debug("q=" + q + ", dim = " + dim);
77
+ if (DEBUG ) {
78
+ int dim = q .getDim (); // dimension of the multipartite numbers
79
+ LOG .debug ("q=" + q + ", dim = " + dim );
80
+ }
81
81
subvalues = MpiPowerMap .create (q );
82
- // LOG.info ("power map has " + subvalues.size() + " elements!");
82
+ if ( DEBUG ) LOG .debug ("power map has " + subvalues .size () + " elements!" );
83
83
MpiPartitionStackElem firstStackElem = new MpiPartitionStackElem (new Mpi [0 ], q );
84
84
stack .push (firstStackElem );
85
85
}
@@ -102,7 +102,7 @@ public Mpi[] next() {
102
102
maxStackSize = stack .size ();
103
103
}
104
104
MpiPartitionStackElem stackElem = stack .pop ();
105
- // LOG.debug("POP prefix=" + Arrays.asList(stackElem.partitionPrefix) + ", rest=" + stackElem.rest);
105
+ if ( DEBUG ) LOG .debug ("POP prefix=" + Arrays .asList (stackElem .partitionPrefix ) + ", rest=" + stackElem .rest );
106
106
107
107
// rest will be the biggest of all parts when the recursion ends
108
108
Mpi rest = stackElem .rest ;
@@ -116,15 +116,15 @@ public Mpi[] next() {
116
116
117
117
// create next parts
118
118
if (maxNextPart !=null && maxNextPart .getCardinality ()>0 && rest .getCardinality ()>1 ) {
119
- // LOG.debug("create nextPartsAndComplements of " + rest);
119
+ if ( DEBUG ) LOG .debug ("create nextPartsAndComplements of " + rest );
120
120
Map <Mpi , Mpi > nextPartsAndComplements = subvalues .getSubvaluesLessOrEqual (rest , maxNextPart );
121
- // LOG.debug("nextPartsAndComplements= " + nextPartsAndComplements);
121
+ if ( DEBUG ) LOG .debug ("nextPartsAndComplements= " + nextPartsAndComplements );
122
122
for (Map .Entry <Mpi , Mpi > partAndComplement : nextPartsAndComplements .entrySet ()) {
123
123
Mpi [] newPrefix = new Mpi [prefixSize +1 ];
124
124
System .arraycopy (prefix , 0 , newPrefix , 0 , prefixSize );
125
125
newPrefix [prefixSize ] = partAndComplement .getKey (); // next part
126
126
// new rest is (rest-next part), the complement of next part
127
- // LOG.debug("PUSH rest=" + rest + ", part=" + partAndComplement.getKey() + " -> newRest=" + partAndComplement.getValue() + ", newPrefix=" + Arrays.asList(newPrefix));
127
+ if ( DEBUG ) LOG .debug ("PUSH rest=" + rest + ", part=" + partAndComplement .getKey () + " -> newRest=" + partAndComplement .getValue () + ", newPrefix=" + Arrays .asList (newPrefix ));
128
128
stack .push (new MpiPartitionStackElem (newPrefix , partAndComplement .getValue ()));
129
129
}
130
130
}
@@ -133,7 +133,7 @@ public Mpi[] next() {
133
133
Mpi [] result = new Mpi [prefixSize +1 ];
134
134
result [0 ] = rest ; // biggest part
135
135
System .arraycopy (prefix , 0 , result , 1 , prefixSize );
136
- // LOG.debug("RETURN " + Arrays.toString(result));
136
+ if ( DEBUG ) LOG .debug ("RETURN " + Arrays .toString (result ));
137
137
return result ;
138
138
}
139
139
@@ -153,8 +153,10 @@ public static SortedSet<MpiPartition> partitionsOf(Mpi q) {
153
153
MpiPartition expPartition = new MpiPartition (flatPartition );
154
154
partitions .add (expPartition );
155
155
}
156
- LOG .debug (partGen .subvalues .accessStats ());
157
- LOG .debug ("maxStackSize = " + partGen .maxStackSize );
156
+ if (DEBUG ) {
157
+ LOG .debug (partGen .subvalues .accessStats ());
158
+ LOG .debug ("maxStackSize = " + partGen .maxStackSize );
159
+ }
158
160
return partitions ;
159
161
}
160
162
@@ -170,8 +172,10 @@ public static long numberOfPartitionsOf(Mpi q) {
170
172
partGen .next ();
171
173
count ++;
172
174
}
173
- //LOG.debug(partGen.subvalues.accessStats());
174
- //LOG.debug("maxStackSize = " + partGen.maxStackSize);
175
+ if (DEBUG ) {
176
+ LOG .debug (partGen .subvalues .accessStats ());
177
+ LOG .debug ("maxStackSize = " + partGen .maxStackSize );
178
+ }
175
179
return count ;
176
180
}
177
181
@@ -184,40 +188,4 @@ public static long numberOfFactorizationsOf(BigInteger n) {
184
188
PrimePowers mpiFromFactors = PrimePowers_DefaultImpl .valueOf (n );
185
189
return numberOfPartitionsOf (mpiFromFactors );
186
190
}
187
-
188
- private static void printNumberOfMultipartitePartitions (Mpi q ) {
189
- long start = System .currentTimeMillis ();
190
- long count = numberOfPartitionsOf (q );
191
- LOG .info (q + " has " + count + " partitions (computed in " + (System .currentTimeMillis ()-start ) + "ms)" );
192
- }
193
-
194
- /**
195
- * Test
196
- * @param args ignored
197
- */
198
- public static void main (String [] args ) {
199
- ConfigUtil .initProject ();
200
-
201
- while (true ) {
202
- String input ;
203
- try {
204
- LOG .info ("\n Please insert comma-separated parts of multipartite number:" );
205
- BufferedReader in = new BufferedReader (new InputStreamReader (System .in ));
206
- String line = in .readLine ();
207
- input = line .trim ();
208
- LOG .debug ("multipartite number input = [" + input + "]" );
209
- } catch (IOException ioe ) {
210
- LOG .error ("io-error occurring on input: " + ioe .getMessage ());
211
- continue ;
212
- }
213
- try {
214
- Mpi q = new Mpi_IntegerArrayImpl (input );
215
- printNumberOfMultipartitePartitions (q );
216
- //SortedSet<MpiPartition> partitions = partitionsOf(q);
217
- //LOG.debug(q + " has " + partitions.size() + " partitions: " + partitions);
218
- } catch (NumberFormatException nfe ) {
219
- LOG .error ("input " + input + " is not a multipartite integer" );
220
- }
221
- } // next input...
222
- }
223
191
}
0 commit comments