~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/FirstOrderDifferentialEquations.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:
41
41
 * @see FirstOrderConverter
42
42
 * @see SecondOrderDifferentialEquations
43
43
 *
44
 
 * @version $Revision: 786881 $ $Date: 2009-06-20 14:53:08 -0400 (Sat, 20 Jun 2009) $
 
44
 * @version $Revision: 811786 $ $Date: 2009-09-06 05:36:08 -0400 (Sun, 06 Sep 2009) $
45
45
 * @since 1.2
46
46
 */
47
47
 
48
48
public interface FirstOrderDifferentialEquations {
49
 
    
 
49
 
50
50
    /** Get the dimension of the problem.
51
51
     * @return dimension of the problem
52
52
     */
53
 
    public int getDimension();
54
 
    
 
53
    int getDimension();
 
54
 
55
55
    /** Get the current time derivative of the state vector.
56
56
     * @param t current value of the independent <I>time</I> variable
57
57
     * @param y array containing the current value of the state vector
59
59
     * @throws DerivativeException this exception is propagated to the caller if the
60
60
     * underlying user function triggers one
61
61
     */
62
 
    public void computeDerivatives(double t, double[] y, double[] yDot)
63
 
    throws DerivativeException;
64
 
    
 
62
    void computeDerivatives(double t, double[] y, double[] yDot) throws DerivativeException;
 
63
 
65
64
}