Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 9149 invoked from network); 31 May 2009 22:10:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 31 May 2009 22:10:15 -0000 Received: (qmail 41478 invoked by uid 500); 31 May 2009 22:10:26 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 41389 invoked by uid 500); 31 May 2009 22:10:26 -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 41380 invoked by uid 99); 31 May 2009 22:10:26 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 31 May 2009 22:10:26 +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; Sun, 31 May 2009 22:10:23 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A1CB123888BD; Sun, 31 May 2009 22:10:02 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r780516 - /commons/proper/math/trunk/src/java/org/apache/commons/math/ode/MultistepIntegrator.java Date: Sun, 31 May 2009 22:10:02 -0000 To: commits@commons.apache.org From: luc@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090531221002.A1CB123888BD@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: luc Date: Sun May 31 22:10:02 2009 New Revision: 780516 URL: http://svn.apache.org/viewvc?rev=780516&view=rev Log: removed obsolete MultiStepInterpolator Modified: commons/proper/math/trunk/src/java/org/apache/commons/math/ode/MultistepIntegrator.java Modified: commons/proper/math/trunk/src/java/org/apache/commons/math/ode/MultistepIntegrator.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/java/org/apache/commons/math/ode/MultistepIntegrator.java?rev=780516&r1=780515&r2=780516&view=diff ============================================================================== --- commons/proper/math/trunk/src/java/org/apache/commons/math/ode/MultistepIntegrator.java (original) +++ commons/proper/math/trunk/src/java/org/apache/commons/math/ode/MultistepIntegrator.java Sun May 31 22:10:02 2009 @@ -25,7 +25,6 @@ import org.apache.commons.math.ode.events.EventState; import org.apache.commons.math.ode.nonstiff.DormandPrince853Integrator; import org.apache.commons.math.ode.sampling.FixedStepHandler; -import org.apache.commons.math.ode.sampling.MultistepStepInterpolator; import org.apache.commons.math.ode.sampling.StepHandler; import org.apache.commons.math.ode.sampling.StepInterpolator; import org.apache.commons.math.ode.sampling.StepNormalizer; @@ -34,8 +33,7 @@ * This class is the base class for multistep integrators for Ordinary * Differential Equations. * - * @see org.apache.commons.math.ode.nonstiff.AdamsBashforthIntegrator - * @see org.apache.commons.math.ode.nonstiff.AdamsMoultonIntegrator + * @see org.apache.commons.math.ode.nonstiff.AdamsIntegrator * @version $Revision$ $Date$ * @since 2.0 */ @@ -57,7 +55,7 @@ private double resetTime; /** Prototype of the step interpolator. */ - protected MultistepStepInterpolator prototype; + protected StepInterpolator prototype; /** * Build a multistep integrator with the given number of steps. @@ -70,7 +68,7 @@ * @param prototype prototype of the step interpolator to use */ protected MultistepIntegrator(final String name, final int k, - final MultistepStepInterpolator prototype) { + final StepInterpolator prototype) { super(name); starter = new DormandPrince853Integrator(1.0e-6, 1.0e6, 1.0e-5, 1.0e-6); previousT = new double[k];