From dc5f850d1d9b0b952b7f0dabd6778cf0f7675cba Mon Sep 17 00:00:00 2001 From: Thomas Neidhart Date: Mon, 12 Jan 2015 22:07:54 +0100 Subject: [PATCH] Add temp debug output --- .../java/org/apache/commons/math3/complex/ComplexTest.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/test/java/org/apache/commons/math3/complex/ComplexTest.java b/src/test/java/org/apache/commons/math3/complex/ComplexTest.java index ea774441d..804b97e52 100644 --- a/src/test/java/org/apache/commons/math3/complex/ComplexTest.java +++ b/src/test/java/org/apache/commons/math3/complex/ComplexTest.java @@ -797,6 +797,12 @@ public class ComplexTest { @Test public void testExpInf4() { + // TODO: temp debug start + double inf = negInfOne.getReal(); + System.out.println(inf); + int intVal = (int) -inf; + System.out.println(intVal); + // TODO: temp debug end System.out.println("expReal="+FastMath.exp(negInfOne.getReal())); // TODO temp debug System.out.println("cosImag="+FastMath.cos(negInfOne.getImaginary())); // TODO temp debug System.out.println("sinImag="+FastMath.sin(negInfOne.getImaginary())); // TODO temp debug