Skip to content

Commit 174c293

Browse files
committed
extract SSOZJ5Runner and move it to the test scope
1 parent e897fb4 commit 174c293

File tree

2 files changed

+53
-41
lines changed

2 files changed

+53
-41
lines changed

src/main/java/de/tilman_neumann/jml/primes/exact/SSOZJ5.java

+13-41
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
import java.util.BitSet;
88
import java.util.LinkedList;
99
import java.util.List;
10-
import java.util.Scanner;
1110
import java.util.concurrent.ExecutionException;
1211
import java.util.concurrent.ExecutorService;
1312
import java.util.concurrent.Executors;
@@ -399,7 +398,16 @@ private static void twins_sieve(int indx, long r_hi) {
399398
/**
400399
* Main routine to setup, time, and display results for twin primes sieve.
401400
*/
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+
403411
System.out.println(" Logicals processors used = "+ (countProcessors()));
404412
long ts = epochTime(); // start timing sieve setup execution
405413

@@ -472,38 +480,6 @@ static void twinprimes_ssoz() {
472480

473481
}
474482

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-
507483
private static int countProcessors() {
508484
return Runtime.getRuntime().availableProcessors();
509485
}
@@ -562,20 +538,16 @@ public static Long eModInv(long a, long m) {
562538
return ((x + m) % m) % m;
563539
}
564540

565-
public static long gcd(long a, long b) {
566-
if (a == 0) return b;
567-
return gcd(b % a, a);
568-
}
569-
570541
/**
571542
* According to the Java Language Spec, Java's % operator is a remainder operator, not a modulo operator.
572543
* @param x a long
573544
* @param y a long
574545
* @return a long modulo
575546
*/
576-
private static long floorMod(long x, long y) {
547+
private static long floorMod(long x, long y) {
577548
return ((x >> 31) & (y - 1)) + (x % y);
578-
}
549+
}
550+
579551
@FunctionalInterface
580552
public interface Callback<T> {
581553
void on(T event);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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.primes.exact;
15+
16+
import java.math.BigInteger;
17+
import java.util.Scanner;
18+
19+
public class SSOZJ5Runner {
20+
21+
/**
22+
* Run SSOZJ5.
23+
* @param args ignored
24+
*/
25+
public static void main(String[] args) {
26+
Scanner userInput = new Scanner(System.in).useDelimiter("[,\\s+]");
27+
System.out.println("Please enter a space-separated range of integers: ");
28+
BigInteger stop = userInput.nextBigDecimal().toBigIntegerExact();
29+
BigInteger start = userInput.nextBigDecimal().toBigIntegerExact();
30+
userInput.close();
31+
32+
if (stop.compareTo(start) < 0) {
33+
BigInteger tmp = start;
34+
start = stop;
35+
stop = tmp;
36+
}
37+
38+
SSOZJ5.twinprimes_ssoz(start, stop);
39+
}
40+
}

0 commit comments

Comments
 (0)