From d778da77e014f03a8ef9f2e0d48ce850adaafcf7 Mon Sep 17 00:00:00 2001 From: Luc Maisonobe Date: Wed, 22 Jun 2011 12:03:51 +0000 Subject: [PATCH] Fixed javadoc for ODEIntegrator interface. JIRA: MATH-600 git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1138419 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/java/org/apache/commons/math/ode/ODEIntegrator.java | 3 ++- src/site/xdoc/changes.xml | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) 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.