Skip to content

Commit 5c5a053

Browse files
committed
... and another one
1 parent 85215cd commit 5c5a053

File tree

4 files changed

+68
-31
lines changed

4 files changed

+68
-31
lines changed

src/main/java/de/tilman_neumann/jml/roots/RootsReal.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,4 +139,4 @@ public static BigDecimal ithRoot(BigDecimal x, int i, BigDecimal guess, Scale re
139139

140140
throw new IllegalArgumentException("x = " + x + ", but i.th root(x) is defined for x>=0 only!");
141141
}
142-
}
142+
}

src/main/java/de/tilman_neumann/jml/roots/SqrtReal.java

+1-29
Original file line numberDiff line numberDiff line change
@@ -120,32 +120,4 @@ public static BigDecimal sqrt(BigDecimal x, BigDecimal guess, Scale resultScale)
120120

121121
throw new IllegalArgumentException("x = " + x + ", but sqrt(x) is defined for x>=0 only!");
122122
}
123-
124-
/**
125-
* Test.
126-
* @param argv command line arguments
127-
*/
128-
public static void main(String[] argv) {
129-
ConfigUtil.initProject();
130-
131-
if (argv.length != 2) {
132-
// wrong number of arguments !
133-
LOG.error("Usage: Sqrt <argument> <scale in decimal digits> !!");
134-
return;
135-
}
136-
137-
// get argument for the sqrt function (decimal input required):
138-
BigDecimal x = new BigDecimal(argv[0]);
139-
140-
// get desired maximal precision
141-
Scale maxScale = Scale.valueOf(Integer.parseInt(argv[1]));
142-
long t0, t1;
143-
144-
t0 = System.currentTimeMillis();
145-
for (Scale scale=Scale.valueOf(2); scale.compareTo(maxScale)<=0; scale = scale.add(1)) {
146-
LOG.debug("sqrt(" + x + ", " + scale + ")=" + sqrt(x, scale));
147-
}
148-
t1 = System.currentTimeMillis();
149-
LOG.debug("Time of sqrt computation: " + TimeUtil.timeDiffStr(t0,t1));
150-
}
151-
}
123+
}

src/test/java/de/tilman_neumann/jml/roots/RootsRealRunner.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public static void main(String[] argv) {
5353
t0 = System.currentTimeMillis();
5454
for (int i=2; i<10; i++) {
5555
for (Scale scale = Scale.valueOf(2); scale.compareTo(maxScale)<=0; scale = scale.add(1)) {
56-
LOG.debug(i + ".th root(" + x + ", " + scale + ")=" + RootsReal.ithRoot(x, i, scale));
56+
LOG.debug(i + ".th root(" + x + ", " + scale + ") = " + RootsReal.ithRoot(x, i, scale));
5757
}
5858
}
5959
t1 = System.currentTimeMillis();
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
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.roots;
15+
16+
import java.io.BufferedReader;
17+
import java.io.InputStreamReader;
18+
import java.math.BigDecimal;
19+
20+
import org.apache.logging.log4j.Logger;
21+
import org.apache.logging.log4j.LogManager;
22+
23+
import de.tilman_neumann.jml.precision.Scale;
24+
import de.tilman_neumann.util.ConfigUtil;
25+
import de.tilman_neumann.util.TimeUtil;
26+
27+
/**
28+
* Test the computation of square roots of floating point numbers by user input.
29+
*
30+
* @author Tilman Neumann
31+
*/
32+
public class SqrtRealRunner {
33+
private static final Logger LOG = LogManager.getLogger(SqrtRealRunner.class);
34+
35+
/**
36+
* Test.
37+
* @param argv command line arguments
38+
*/
39+
public static void main(String[] argv) {
40+
ConfigUtil.initProject();
41+
42+
while (true) {
43+
try {
44+
LOG.info("\nPlease insert <x> <maximal scale>:");
45+
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
46+
String line = in.readLine();
47+
String[] splitted = line.split("\\s+");
48+
BigDecimal x = new BigDecimal(splitted[0]);
49+
Integer maxScaleInput = Integer.parseInt(splitted[1]);
50+
Scale maxScale = Scale.valueOf(maxScaleInput);
51+
long t0, t1;
52+
53+
t0 = System.currentTimeMillis();
54+
t0 = System.currentTimeMillis();
55+
for (Scale scale=Scale.valueOf(2); scale.compareTo(maxScale)<=0; scale = scale.add(1)) {
56+
LOG.debug("sqrt(" + x + ", " + scale + ") = " + SqrtReal.sqrt(x, scale));
57+
}
58+
t1 = System.currentTimeMillis();
59+
LOG.debug("Time of sqrt computations: " + TimeUtil.timeDiffStr(t0,t1));
60+
} catch (Exception ex) {
61+
LOG.error("Error " + ex, ex);
62+
}
63+
}
64+
}
65+
}

0 commit comments

Comments
 (0)