From cb177b56b7664ab323558545737646896f4d7e70 Mon Sep 17 00:00:00 2001 From: tn Date: Tue, 13 Jan 2015 10:35:27 +0100 Subject: [PATCH] Readd console output. --- src/main/java/org/apache/commons/math3/util/FastMath.java | 1 + 1 file changed, 1 insertion(+) 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 51782159d..9126df3c9 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;