Skip to content

Commit 3780e12

Browse files
committed
cleanup
1 parent 5c5a053 commit 3780e12

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

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

+5-6
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222
import de.tilman_neumann.jml.precision.Magnitude;
2323
import de.tilman_neumann.jml.precision.Scale;
2424
import de.tilman_neumann.jml.powers.Pow2;
25-
import de.tilman_neumann.util.ConfigUtil;
26-
import de.tilman_neumann.util.TimeUtil;
2725

2826
import static de.tilman_neumann.jml.base.BigDecimalConstants.F_0;
2927
import static de.tilman_neumann.jml.base.BigIntConstants.*;
@@ -36,7 +34,8 @@
3634
*/
3735
public class SqrtReal {
3836
private static final Logger LOG = LogManager.getLogger(SqrtReal.class);
39-
37+
private static final boolean DEBUG = false;
38+
4039
/**
4140
* Compute square root.
4241
*
@@ -47,7 +46,7 @@ public class SqrtReal {
4746
public static BigDecimal sqrt(BigDecimal x, Scale resultScale) {
4847
// get initial guess correct to double precision (52 bit)
4948
BigDecimal guess = getInitialApproximation(x);
50-
//LOG.debug("initial guess: sqrt(" + x + ") ~ " + guess);
49+
if (DEBUG) LOG.debug("initial guess: sqrt(" + x + ") ~ " + guess);
5150
// iteration
5251
return sqrt(x, guess, resultScale);
5352
}
@@ -107,9 +106,9 @@ public static BigDecimal sqrt(BigDecimal x, BigDecimal guess, Scale resultScale)
107106
lastGuess = guess;
108107
guess = BigDecimalMath.divide(x, guess, internalScale);
109108
guess = Pow2.divPow2(guess.add(lastGuess), 1);
110-
//LOG.debug("next guess: sqrt(" + x + ") ~ " + guess);
109+
if (DEBUG) LOG.debug("next guess: sqrt(" + x + ") ~ " + guess);
111110
error = guess.subtract(lastGuess).abs();
112-
//LOG.debug("error = " + error);
111+
if (DEBUG) LOG.debug("error = " + error);
113112
} while (error.compareTo(maxAllowedError)>=0);
114113

115114
return resultScale.applyTo(guess);

0 commit comments

Comments
 (0)