Repository: commons-math Updated Branches: refs/heads/master 0f3626512 -> cb177b56b
Readd console output. Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/cb177b56 Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/cb177b56 Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/cb177b56 Branch: refs/heads/master Commit: cb177b56b7664ab323558545737646896f4d7e70 Parents: 0f36265 Author: tn <[email protected]> Authored: Tue Jan 13 10:35:27 2015 +0100 Committer: tn <[email protected]> Committed: Tue Jan 13 10:35:27 2015 +0100 ---------------------------------------------------------------------- src/main/java/org/apache/commons/math3/util/FastMath.java | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-math/blob/cb177b56/src/main/java/org/apache/commons/math3/util/FastMath.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/math3/util/FastMath.java b/src/main/java/org/apache/commons/math3/util/FastMath.java index 5178215..9126df3 100644 --- a/src/main/java/org/apache/commons/math3/util/FastMath.java +++ b/src/main/java/org/apache/commons/math3/util/FastMath.java @@ -873,6 +873,7 @@ public class FastMath { * intPartA will have the upper 22 bits, intPartB will have the lower * 52 bits. */ + System.out.println("Computing exp(" + x + ")"); if (x < 0.0) { intVal = (int) -x;
