Return-Path: Delivered-To: apmail-commons-commits-archive@locus.apache.org Received: (qmail 75230 invoked from network); 10 Sep 2007 19:00:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 10 Sep 2007 19:00:32 -0000 Received: (qmail 66745 invoked by uid 500); 10 Sep 2007 19:00:24 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 66660 invoked by uid 500); 10 Sep 2007 19:00:24 -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 66651 invoked by uid 99); 10 Sep 2007 19:00:24 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 10 Sep 2007 12:00:24 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 10 Sep 2007 19:00:30 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 40E631A9832; Mon, 10 Sep 2007 12:00:10 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r574335 - in /commons/proper/math/trunk/src: java/org/apache/commons/math/ode/ test/org/apache/commons/math/ode/ Date: Mon, 10 Sep 2007 19:00:10 -0000 To: commits@commons.apache.org From: luc@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20070910190010.40E631A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: luc Date: Mon Sep 10 12:00:09 2007 New Revision: 574335 URL: http://svn.apache.org/viewvc?rev=574335&view=rev Log: removed factories from the new ODE package Removed: commons/proper/math/trunk/src/java/org/apache/commons/math/ode/FirstOrderIntegratorFactory.java commons/proper/math/trunk/src/java/org/apache/commons/math/ode/FirstOrderIntegratorFactoryImpl.java Modified: commons/proper/math/trunk/src/test/org/apache/commons/math/ode/GraggBulirschStoerIntegratorTest.java Modified: commons/proper/math/trunk/src/test/org/apache/commons/math/ode/GraggBulirschStoerIntegratorTest.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/org/apache/commons/math/ode/GraggBulirschStoerIntegratorTest.java?rev=574335&r1=574334&r2=574335&view=diff ============================================================================== --- commons/proper/math/trunk/src/test/org/apache/commons/math/ode/GraggBulirschStoerIntegratorTest.java (original) +++ commons/proper/math/trunk/src/test/org/apache/commons/math/ode/GraggBulirschStoerIntegratorTest.java Mon Sep 10 12:00:09 2007 @@ -37,10 +37,8 @@ public void testDimensionCheck() { try { TestProblem1 pb = new TestProblem1(); - FirstOrderIntegratorFactory factory = - FirstOrderIntegratorFactory.newInstance(); AdaptiveStepsizeIntegrator integrator = - factory.newGraggBulirschStoerIntegrator(0.0, 1.0, 1.0e-10, 1.0e-10); + new GraggBulirschStoerIntegrator(0.0, 1.0, 1.0e-10, 1.0e-10); integrator.integrate(pb, 0.0, new double[pb.getDimension()+10], 1.0, new double[pb.getDimension()+10]);