added missing @since
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1073266 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a197358647
commit
a03e53aad7
|
@ -215,6 +215,7 @@ public abstract class AbstractIntegrator implements FirstOrderIntegrator {
|
||||||
* {@code false} before they start integration, so a proper lazy
|
* {@code false} before they start integration, so a proper lazy
|
||||||
* initialization is done automatically on the first step.</p>
|
* initialization is done automatically on the first step.</p>
|
||||||
* @param stateInitialized new value for the flag
|
* @param stateInitialized new value for the flag
|
||||||
|
* @since 2.2
|
||||||
*/
|
*/
|
||||||
protected void setStateInitialized(final boolean stateInitialized) {
|
protected void setStateInitialized(final boolean stateInitialized) {
|
||||||
this.statesInitialized = stateInitialized;
|
this.statesInitialized = stateInitialized;
|
||||||
|
@ -228,6 +229,7 @@ public abstract class AbstractIntegrator implements FirstOrderIntegrator {
|
||||||
* @param tEnd final integration time
|
* @param tEnd final integration time
|
||||||
* @return time at end of step
|
* @return time at end of step
|
||||||
* @exception IntegratorException if the value of one event state cannot be evaluated
|
* @exception IntegratorException if the value of one event state cannot be evaluated
|
||||||
|
* @since 2.2
|
||||||
*/
|
*/
|
||||||
protected double acceptStep(final AbstractStepInterpolator interpolator,
|
protected double acceptStep(final AbstractStepInterpolator interpolator,
|
||||||
final double[] y, final double[] yDot, final double tEnd)
|
final double[] y, final double[] yDot, final double tEnd)
|
||||||
|
|
Loading…
Reference in New Issue