~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/SecondOrderIntegrator.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:
27
27
 * SecondOrderDifferentialEquations} interface.</p>
28
28
 *
29
29
 * @see SecondOrderDifferentialEquations
30
 
 * @version $Revision: 674820 $ $Date: 2008-07-08 09:37:09 -0400 (Tue, 08 Jul 2008) $
 
30
 * @version $Revision: 811786 $ $Date: 2009-09-06 05:36:08 -0400 (Sun, 06 Sep 2009) $
31
31
 * @since 1.2
32
32
 */
33
33
 
50
50
   * @throws DerivativeException this exception is propagated to the caller if the
51
51
   * underlying user function triggers one
52
52
   */
53
 
  public void integrate(SecondOrderDifferentialEquations equations,
54
 
                        double t0, double[] y0, double[] yDot0,
55
 
                        double t, double[] y, double[] yDot)
56
 
  throws DerivativeException, IntegratorException;
 
53
  void integrate(SecondOrderDifferentialEquations equations,
 
54
                 double t0, double[] y0, double[] yDot0,
 
55
                 double t, double[] y, double[] yDot)
 
56
      throws DerivativeException, IntegratorException;
57
57
 
58
58
}