diff --git a/src/main/java/org/apache/commons/math/ode/ODEIntegrator.java b/src/main/java/org/apache/commons/math/ode/ODEIntegrator.java index 3ada91da6..315d242b2 100644 --- a/src/main/java/org/apache/commons/math/ode/ODEIntegrator.java +++ b/src/main/java/org/apache/commons/math/ode/ODEIntegrator.java @@ -63,7 +63,8 @@ public interface ODEIntegrator { */ void clearStepHandlers(); - /** Add an event handler to the integrator. Uses a {@link BrentSolver} + /** Add an event handler to the integrator. + * Uses a default {@link UnivariateRealSolver} * with an absolute accuracy equal to the given convergence threshold, * as root-finding algorithm to detect the state events. * @param handler event handler diff --git a/src/site/xdoc/changes.xml b/src/site/xdoc/changes.xml index 3a1f7ffe6..b7c920f57 100644 --- a/src/site/xdoc/changes.xml +++ b/src/site/xdoc/changes.xml @@ -52,6 +52,9 @@ The type attribute can be add,update,fix,remove. If the output is not quite correct, check for invisible trailing spaces! --> + + Fixed javadoc for ODEIntegrator interface + Extended StepNormalizer with normalization mode and bounds settings.