14
14
package de .tilman_neumann .jml .roots ;
15
15
16
16
import java .math .BigInteger ;
17
- import java .security .SecureRandom ;
18
- import java .util .ArrayList ;
19
17
20
18
import org .apache .logging .log4j .Logger ;
21
19
import org .apache .logging .log4j .LogManager ;
22
20
23
21
import de .tilman_neumann .jml .base .BigIntConverter ;
24
22
import de .tilman_neumann .util .Ensure ;
25
- import de .tilman_neumann .util .ConfigUtil ;
26
23
27
24
import static de .tilman_neumann .jml .base .BigIntConstants .*;
28
25
41
38
*/
42
39
public class Roots {
43
40
private static final Logger LOG = LogManager .getLogger (Roots .class );
44
- private static final SecureRandom RNG = new SecureRandom ();
45
41
private static final boolean DEBUG = false ;
46
- private static final boolean TEST_BITWISE = false ;
47
42
48
43
/**
49
44
* Computes the i.th root of N, using either a bitwise correction approach (for rather big roots <code>i</code>)
@@ -69,7 +64,7 @@ public static BigInteger[] ithRoot(BigInteger N, int i) {
69
64
* @param i root
70
65
* @return [lower, upper] int values of i.th root(N)
71
66
*/
72
- private static BigInteger [] ithRoot_bitwise (BigInteger N , int i ) {
67
+ static BigInteger [] ithRoot_bitwise (BigInteger N , int i ) {
73
68
BigInteger ret = I_0 ;
74
69
int maxResultBitIndex = N .bitLength ()/i ;
75
70
for (int bitIdx =maxResultBitIndex ; bitIdx >=0 ; bitIdx --) {
@@ -252,89 +247,4 @@ private static BigInteger computeInitialGuess(BigInteger N, int i) {
252
247
//LOG.debug(i + ".th root(" + N + "): initialGuess = " + initialGuess);
253
248
return initialGuess ;
254
249
}
255
-
256
- /**
257
- * create test set for performance test: random ints with random bit length < 1000
258
- * @param nCount
259
- * @return
260
- */
261
- private static ArrayList <BigInteger > createTestSet (int nCount , int bits ) {
262
- ArrayList <BigInteger > testSet = new ArrayList <BigInteger >();
263
- for (int i =0 ; i <nCount ;) {
264
- BigInteger testNum = new BigInteger (bits , RNG );
265
- if (testNum .bitLength ()<bits ) continue ; // not exact size, skip
266
- testSet .add (testNum );
267
- i ++;
268
- }
269
- return testSet ;
270
- }
271
-
272
- private static void testCorrectness (int nCount ) {
273
- for (int bits = 100 ; bits <=1000 ; bits +=100 ) {
274
- ArrayList <BigInteger > testSet = createTestSet (nCount , bits );
275
- // test correctness
276
- for (BigInteger testNum : testSet ) {
277
- int root = 2 + RNG .nextInt (48 );
278
- BigInteger [] linResult = Roots .ithRoot_bitwise (testNum , root );
279
- BigInteger [] heronResult = Roots .ithRoot_Heron1 (testNum , root );
280
- if (!linResult [0 ].equals (heronResult [0 ])) {
281
- LOG .error ("ERROR: Heron1: lower bound of " + root + ".th root(" + testNum + "): linear algorithm -> " + linResult [0 ] + ", Heron1 -> " + heronResult [0 ]);
282
- }
283
- if (!linResult [1 ].equals (heronResult [1 ])) {
284
- LOG .error ("ERROR: Heron1: upper bound of " + root + ".th root(" + testNum + "): linear algorithm -> " + linResult [1 ] + ", Heron1 -> " + heronResult [1 ]);
285
- }
286
-
287
- heronResult = Roots .ithRoot_Heron2 (testNum , root );
288
- if (!linResult [0 ].equals (heronResult [0 ])) {
289
- LOG .error ("ERROR: Heron2: lower bound of " + root + ".th root(" + testNum + "): linear algorithm -> " + linResult [0 ] + ", Heron2 -> " + heronResult [0 ]);
290
- }
291
- if (!linResult [1 ].equals (heronResult [1 ])) {
292
- LOG .error ("ERROR: Heron2: upper bound of " + root + ".th root(" + testNum + "): linear algorithm -> " + linResult [1 ] + ", Heron2 -> " + heronResult [1 ]);
293
- }
294
- }
295
- }
296
- }
297
-
298
- private static void testPerformance (int nCount ) {
299
- for (int bits = 100 ; ; bits +=100 ) {
300
- ArrayList <BigInteger > testSet = createTestSet (nCount , bits );
301
- for (int root =3 ; ((float )bits )/root > 4 ; root += 1 +RNG .nextInt (10 )) {
302
- // RNG reduces compiler optimizations ? -> makes test results more comparable ?
303
- LOG .info ("test " + root + ".th root of " + bits + "-bit numbers:" );
304
- long t0 , t1 ;
305
- if (TEST_BITWISE ) {
306
- t0 = System .currentTimeMillis ();
307
- for (BigInteger testNum : testSet ) {
308
- Roots .ithRoot_bitwise (testNum , root );
309
- }
310
- t1 = System .currentTimeMillis ();
311
- LOG .info (" Bitwise ith root test with " + nCount + " numbers took " + (t1 -t0 ) + " ms" );
312
- }
313
-
314
- t0 = System .currentTimeMillis ();
315
- for (BigInteger testNum : testSet ) {
316
- Roots .ithRoot_Heron1 (testNum , root );
317
- }
318
- t1 = System .currentTimeMillis ();
319
- LOG .info (" Heron1 ith root test with " + nCount + " numbers took " + (t1 -t0 ) + " ms" );
320
-
321
- t0 = System .currentTimeMillis ();
322
- for (BigInteger testNum : testSet ) {
323
- Roots .ithRoot_Heron2 (testNum , root );
324
- }
325
- t1 = System .currentTimeMillis ();
326
- LOG .info (" Heron2 ith root test with " + nCount + " numbers took " + (t1 -t0 ) + " ms" );
327
- }
328
- }
329
- }
330
-
331
- /**
332
- * Test.
333
- * @param args ignored
334
- */
335
- public static void main (String [] args ) {
336
- ConfigUtil .initProject ();
337
- testCorrectness (10000 );
338
- testPerformance (5000000 );
339
- }
340
250
}
0 commit comments