More debug

This commit is contained in:
Sebb 2015-01-12 20:08:44 +00:00
parent 1325e11410
commit bae46709ec
1 changed files with 6 additions and 1 deletions

View File

@ -797,7 +797,12 @@ public class ComplexTest {
@Test
public void testExpInf4() {
TestUtils.assertSame(Complex.ZERO, negInfOne.exp());
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
final Complex exp = negInfOne.exp();
System.out.println("result="+exp); // TODO temp debug
TestUtils.assertSame(Complex.ZERO, exp);
}
@Test