Fixed checkstyle and javadoc warnings in package ode

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1240253 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2012-02-03 17:38:02 +00:00
parent 0280b53e2d
commit 6512d468ef
3 changed files with 12 additions and 4 deletions

View File

@ -382,7 +382,7 @@ public abstract class MultistepIntegrator extends AdaptiveStepsizeIntegrator {
}
/** {@inheritDoc} */
public void init(double t0, double[] y0, double t) {
public void init(double t0, double[] y0, double time) {
// nothing to do
}

View File

@ -58,10 +58,10 @@ class ParameterConfiguration implements Serializable {
}
/** Set parameter step.
* @param hP parameter step
* @param hParam parameter step
*/
public void setHP(final double hP) {
this.hP = hP;
public void setHP(final double hParam) {
this.hP = hParam;
}
}

View File

@ -40,10 +40,18 @@ class ParameterizedWrapper implements ParameterizedODE {
this.fode = ode;
}
/** Get the dimension of the underlying FODE.
* @return dimension of the underlying FODE
*/
public int getDimension() {
return fode.getDimension();
}
/** Get the current time derivative of the state vector of the underlying FODE.
* @param t current value of the independent <I>time</I> variable
* @param y array containing the current value of the state vector
* @param yDot placeholder array where to put the time derivative of the state vector
*/
public void computeDerivatives(double t, double[] y, double[] yDot) {
fode.computeDerivatives(t, y, yDot);
}