diff --git a/src/main/java/org/apache/commons/math/ode/jacobians/FirstOrderIntegratorWithJacobians.java b/src/main/java/org/apache/commons/math/ode/jacobians/FirstOrderIntegratorWithJacobians.java index e21438821..5e828bcce 100644 --- a/src/main/java/org/apache/commons/math/ode/jacobians/FirstOrderIntegratorWithJacobians.java +++ b/src/main/java/org/apache/commons/math/ode/jacobians/FirstOrderIntegratorWithJacobians.java @@ -72,7 +72,7 @@ public class FirstOrderIntegratorWithJacobians { * same dimension as the original problem * @param hP step sizes to use for computing the jacobian df/dp, must have the * same dimension as the original problem parameters dimension - * @see #EnhancedFirstOrderIntegrator(FirstOrderIntegrator, + * @see #FirstOrderIntegratorWithJacobians(FirstOrderIntegrator, * ParameterizedODEWithJacobians) */ public FirstOrderIntegratorWithJacobians(final FirstOrderIntegrator integrator, @@ -89,7 +89,7 @@ public class FirstOrderIntegratorWithJacobians { /** Build an enhanced integrator using ODE builtin jacobian computation features. * @param integrator underlying integrator to solve the compound problem * @param ode original problem, which can compute the jacobians by itself - * @see #EnhancedFirstOrderIntegrator(FirstOrderIntegrator, + * @see #FirstOrderIntegratorWithJacobians(FirstOrderIntegrator, * ParameterizedODE, double[], double[], double[]) */ public FirstOrderIntegratorWithJacobians(final FirstOrderIntegrator integrator, @@ -184,7 +184,6 @@ public class FirstOrderIntegratorWithJacobians { *
Since this method stores some internal state variables made * available in its public interface during integration ({@link * #getCurrentSignedStepsize()}), it is not thread-safe.
- * @param equations differential equations to integrate * @param t0 initial time * @param y0 initial value of the state vector at t0 * @param dY0dP initial value of the state vector derivative with respect to the diff --git a/src/main/java/org/apache/commons/math/ode/jacobians/StepHandlerWithJacobians.java b/src/main/java/org/apache/commons/math/ode/jacobians/StepHandlerWithJacobians.java index df4b0134e..dd1caa994 100644 --- a/src/main/java/org/apache/commons/math/ode/jacobians/StepHandlerWithJacobians.java +++ b/src/main/java/org/apache/commons/math/ode/jacobians/StepHandlerWithJacobians.java @@ -42,10 +42,7 @@ public interface StepHandlerWithJacobians { /** Determines whether this handler needs dense output. *This method allows the integrator to avoid performing extra - * computation if the handler does not need dense output. If this - * method returns false, the integrator will call the {@link - * #handleStep} method with a {@link DummyStepInterpolator} rather - * than a custom interpolator.
+ * computation if the handler does not need dense output. * @return true if the handler needs dense output */ boolean requiresDenseOutput(); diff --git a/src/main/java/org/apache/commons/math/ode/jacobians/package.html b/src/main/java/org/apache/commons/math/ode/jacobians/package.html index 32f9156b3..d354035c7 100644 --- a/src/main/java/org/apache/commons/math/ode/jacobians/package.html +++ b/src/main/java/org/apache/commons/math/ode/jacobians/package.html @@ -33,3 +33,5 @@ fromt=t0
to t=t1
,
where y
is the state and p
is a parameters
array.
+