|
7 | 7 | import java.util.BitSet;
|
8 | 8 | import java.util.LinkedList;
|
9 | 9 | import java.util.List;
|
10 |
| -import java.util.Scanner; |
11 | 10 | import java.util.concurrent.ExecutionException;
|
12 | 11 | import java.util.concurrent.ExecutorService;
|
13 | 12 | import java.util.concurrent.Executors;
|
@@ -399,7 +398,16 @@ private static void twins_sieve(int indx, long r_hi) {
|
399 | 398 | /**
|
400 | 399 | * Main routine to setup, time, and display results for twin primes sieve.
|
401 | 400 | */
|
402 |
| - static void twinprimes_ssoz() { |
| 401 | + public static void twinprimes_ssoz(BigInteger start, BigInteger stop) { |
| 402 | + start = start.max(THREE); |
| 403 | + BigInteger end = stop.max(THREE); |
| 404 | + |
| 405 | + start_num = start.or(ONE); // if start_num even add 1 |
| 406 | + end_num = end.subtract(ONE).or(ONE); // if end_num even subtract 1 |
| 407 | + |
| 408 | + PGparam.Lstart = start_num.longValue(); |
| 409 | + PGparam.Lend = end_num.longValue(); |
| 410 | + |
403 | 411 | System.out.println(" Logicals processors used = "+ (countProcessors()));
|
404 | 412 | long ts = epochTime(); // start timing sieve setup execution
|
405 | 413 |
|
@@ -472,38 +480,6 @@ static void twinprimes_ssoz() {
|
472 | 480 |
|
473 | 481 | }
|
474 | 482 |
|
475 |
| - /** |
476 |
| - * Only BigDecimal understand scientific notation |
477 |
| - * @param args |
478 |
| - */ |
479 |
| - public static void main(String[] args) { |
480 |
| - //if (args==null) |
481 |
| - Scanner userInput = new Scanner(System.in).useDelimiter("[,\\s+]"); |
482 |
| - System.out.println("Please enter an range of integer (comma or space separated): "); |
483 |
| - BigInteger stop = userInput.nextBigDecimal().toBigIntegerExact(); |
484 |
| - BigInteger start = userInput.hasNextLine()?userInput.nextBigDecimal().toBigIntegerExact():THREE; |
485 |
| - |
486 |
| - userInput.close(); |
487 |
| - |
488 |
| - if (stop.compareTo(start) < 0) { |
489 |
| - BigInteger tmp = start; |
490 |
| - start = stop; |
491 |
| - stop = tmp; |
492 |
| - } |
493 |
| - |
494 |
| - start = start.max(THREE); |
495 |
| - BigInteger end = stop.max(THREE); |
496 |
| - |
497 |
| - start_num = start.or(ONE); // if start_num even add 1 |
498 |
| - end_num = end.subtract(ONE).or(ONE); // if end_num even subtract 1 |
499 |
| - |
500 |
| - PGparam.Lstart = start_num.longValue(); |
501 |
| - PGparam.Lend = end_num.longValue(); |
502 |
| - |
503 |
| - twinprimes_ssoz(); |
504 |
| - |
505 |
| - } |
506 |
| - |
507 | 483 | private static int countProcessors() {
|
508 | 484 | return Runtime.getRuntime().availableProcessors();
|
509 | 485 | }
|
@@ -562,20 +538,16 @@ public static Long eModInv(long a, long m) {
|
562 | 538 | return ((x + m) % m) % m;
|
563 | 539 | }
|
564 | 540 |
|
565 |
| - public static long gcd(long a, long b) { |
566 |
| - if (a == 0) return b; |
567 |
| - return gcd(b % a, a); |
568 |
| - } |
569 |
| - |
570 | 541 | /**
|
571 | 542 | * According to the Java Language Spec, Java's % operator is a remainder operator, not a modulo operator.
|
572 | 543 | * @param x a long
|
573 | 544 | * @param y a long
|
574 | 545 | * @return a long modulo
|
575 | 546 | */
|
576 |
| - private static long floorMod(long x, long y) { |
| 547 | + private static long floorMod(long x, long y) { |
577 | 548 | return ((x >> 31) & (y - 1)) + (x % y);
|
578 |
| - } |
| 549 | + } |
| 550 | + |
579 | 551 | @FunctionalInterface
|
580 | 552 | public interface Callback<T> {
|
581 | 553 | void on(T event);
|
|
0 commit comments