Author: luc
Date: Tue Jul  8 06:32:00 2008
New Revision: 674817

URL: http://svn.apache.org/viewvc?rev=674817&view=rev
Log:
The ODE integrators now support several step handlers at once, instead of just 
one.
This is more consistent with event handlers management.
The setStepHandler method has therefore been replaced by addStephandler, the
getStepHandler method has been replaced by getStepHandlers which returns a 
Collection
and a clearStepHandlers method has been added.

Modified:
    
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/sampling/package.html

Modified: 
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/sampling/package.html
URL: 
http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/sampling/package.html?rev=674817&r1=674816&r2=674817&view=diff
==============================================================================
--- 
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/sampling/package.html
 (original)
+++ 
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/ode/sampling/package.html
 Tue Jul  8 06:32:00 2008
@@ -27,7 +27,7 @@
 ODE integrators also build up interpolation models of this evolution 
<em>inside</em> the
 last computed step. If users are interested in these interpolators, they can 
register a
 [EMAIL PROTECTED] org.apache.commons.math.ode.sampling.StepHandler 
StepHandler} instance using the
[EMAIL PROTECTED] 
org.apache.commons.math.ode.FirstOrderIntegrator#setStepHandler setStepHandler}
[EMAIL PROTECTED] 
org.apache.commons.math.ode.FirstOrderIntegrator#addStepHandler addStepHandler}
 method which is supported by all integrators. The integrator will call this 
instance
 at the end of each accepted step and provide it the interpolator. The user can 
do
 whatever he wants with this interpolator, which computes both the state and its


Reply via email to