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:
parent
0280b53e2d
commit
6512d468ef
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue