~ubuntu-branches/ubuntu/quantal/commons-math/quantal

« back to all changes in this revision

Viewing changes to src/main/java/org/apache/commons/math/ode/nonstiff/MidpointStepInterpolator.java

  • Committer: Bazaar Package Importer
  • Author(s): Damien Raude-Morvan
  • Date: 2010-04-05 23:33:02 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20100405233302-gpqlceked76nw28a
Tags: 2.1-1
* New upstream release.
* Bump Standards-Version to 3.8.4: no changes needed
* Bump debhelper to >= 7
* Switch to 3.0 (quilt) source format:
  - Remove B-D on quilt
  - Add d/source/format
  - Remove d/README.source

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
package org.apache.commons.math.ode.nonstiff;
19
19
 
20
20
import org.apache.commons.math.ode.DerivativeException;
21
 
import org.apache.commons.math.ode.sampling.AbstractStepInterpolator;
22
21
import org.apache.commons.math.ode.sampling.StepInterpolator;
23
22
 
24
23
/**
38
37
 * step.</p>
39
38
 *
40
39
 * @see MidpointIntegrator
41
 
 * @version $Revision: 782432 $ $Date: 2009-06-07 15:08:26 -0400 (Sun, 07 Jun 2009) $
 
40
 * @version $Revision: 811827 $ $Date: 2009-09-06 11:32:50 -0400 (Sun, 06 Sep 2009) $
42
41
 * @since 1.2
43
42
 */
44
43
 
45
44
class MidpointStepInterpolator
46
45
  extends RungeKuttaStepInterpolator {
47
 
    
 
46
 
 
47
    /** Serializable version identifier */
 
48
    private static final long serialVersionUID = -865524111506042509L;
 
49
 
48
50
  /** Simple constructor.
49
51
   * This constructor builds an instance that is not usable yet, the
50
 
   * {@link AbstractStepInterpolator#reinitialize} method should be called
51
 
   * before using the instance in order to initialize the internal arrays. This
52
 
   * constructor is used only in order to delay the initialization in
53
 
   * some cases. The {@link RungeKuttaIntegrator} class uses the
54
 
   * prototyping design pattern to create the step interpolators by
55
 
   * cloning an uninitialized model and latter initializing the copy.
 
52
   * {@link
 
53
   * org.apache.commons.math.ode.sampling.AbstractStepInterpolator#reinitialize}
 
54
   * method should be called before using the instance in order to
 
55
   * initialize the internal arrays. This constructor is used only
 
56
   * in order to delay the initialization in some cases. The {@link
 
57
   * RungeKuttaIntegrator} class uses the prototyping design pattern
 
58
   * to create the step interpolators by cloning an uninitialized model
 
59
   * and later initializing the copy.
56
60
   */
57
61
  public MidpointStepInterpolator() {
58
62
  }
93
97
 
94
98
  }
95
99
 
96
 
  /** Serializable version identifier */
97
 
  private static final long serialVersionUID = -865524111506042509L;
98
 
 
99
100
}