fixed javadoc errors

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@919848 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2010-03-06 20:50:02 +00:00
parent f5f8956448
commit d381e12f99
3 changed files with 5 additions and 7 deletions

View File

@ -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 {
* <p>Since this method stores some internal state variables made
* available in its public interface during integration ({@link
* #getCurrentSignedStepsize()}), it is <em>not</em> thread-safe.</p>
* @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

View File

@ -42,10 +42,7 @@ public interface StepHandlerWithJacobians {
/** Determines whether this handler needs dense output.
* <p>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.</p>
* computation if the handler does not need dense output.</p>
* @return true if the handler needs dense output
*/
boolean requiresDenseOutput();

View File

@ -33,3 +33,5 @@ from <code>t=t<sub>0</sub></code> to <code>t=t<sub>1</sub></code>,
where <code>y</code> is the state and <code>p</code> is a parameters
array.
</p>
</body>
</html>