You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by lu...@apache.org on 2009/06/04 22:18:51 UTC

svn commit: r781847 - /commons/proper/math/trunk/src/test/org/apache/commons/math/linear/CholeskyDecompositionImplTest.java

Author: luc
Date: Thu Jun  4 20:18:50 2009
New Revision: 781847

URL: http://svn.apache.org/viewvc?rev=781847&view=rev
Log:
removed a print

Modified:
    commons/proper/math/trunk/src/test/org/apache/commons/math/linear/CholeskyDecompositionImplTest.java

Modified: commons/proper/math/trunk/src/test/org/apache/commons/math/linear/CholeskyDecompositionImplTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/org/apache/commons/math/linear/CholeskyDecompositionImplTest.java?rev=781847&r1=781846&r2=781847&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/org/apache/commons/math/linear/CholeskyDecompositionImplTest.java (original)
+++ commons/proper/math/trunk/src/test/org/apache/commons/math/linear/CholeskyDecompositionImplTest.java Thu Jun  4 20:18:50 2009
@@ -68,14 +68,13 @@
     /** test non positive definite matrix */
     @Test(expected = NotPositiveDefiniteMatrixException.class)
     public void testNotPositiveDefinite() throws MathException {
-        CholeskyDecomposition cd = new CholeskyDecompositionImpl(MatrixUtils.createRealMatrix(new double[][] {
+        new CholeskyDecompositionImpl(MatrixUtils.createRealMatrix(new double[][] {
                 { 14, 11, 13, 15, 24 },
                 { 11, 34, 13, 8,  25 },
                 { 13, 13, 14, 15, 21 },
                 { 15, 8,  15, 18, 23 },
                 { 24, 25, 21, 23, 45 }
         }));
-        System.out.println(cd.getL().multiply(cd.getLT()));
     }
 
     @Test(expected = NotPositiveDefiniteMatrixException.class)