From commits-return-6834-apmail-commons-commits-archive=commons.apache.org@commons.apache.org Thu Jun 04 20:36:14 2009 Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 81078 invoked from network); 4 Jun 2009 20:36:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 4 Jun 2009 20:36:13 -0000 Received: (qmail 57839 invoked by uid 500); 4 Jun 2009 20:19:15 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 57791 invoked by uid 500); 4 Jun 2009 20:19:15 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 57782 invoked by uid 99); 4 Jun 2009 20:19:15 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Jun 2009 20:19:15 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Jun 2009 20:19:12 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 5434E23888D0; Thu, 4 Jun 2009 20:18:51 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r781847 - /commons/proper/math/trunk/src/test/org/apache/commons/math/linear/CholeskyDecompositionImplTest.java Date: Thu, 04 Jun 2009 20:18:51 -0000 To: commits@commons.apache.org From: luc@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090604201851.5434E23888D0@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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)