Add temp debug output

This commit is contained in:
Thomas Neidhart 2015-01-12 22:07:54 +01:00
parent bae46709ec
commit dc5f850d1d
1 changed files with 6 additions and 0 deletions

View File

@ -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