| Package | Description | 
|---|---|
| org.apache.commons.math3.ode | 
 This package provides classes to solve Ordinary Differential Equations problems. | 
| org.apache.commons.math3.ode.events | 
 This package provides classes to handle discrete events occurring during
 Ordinary Differential Equations integration. | 
| Modifier and Type | Method and Description | 
|---|---|
| Collection<FieldEventHandler<T>> | AbstractFieldIntegrator. getEventHandlers()Get all the event handlers that have been added to the integrator. | 
| Collection<FieldEventHandler<T>> | FirstOrderFieldIntegrator. getEventHandlers()Get all the event handlers that have been added to the integrator. | 
| Modifier and Type | Method and Description | 
|---|---|
| void | AbstractFieldIntegrator. addEventHandler(FieldEventHandler<T> handler,
               double maxCheckInterval,
               double convergence,
               int maxIterationCount)Add an event handler to the integrator. | 
| void | FirstOrderFieldIntegrator. addEventHandler(FieldEventHandler<T> handler,
               double maxCheckInterval,
               double convergence,
               int maxIterationCount)Add an event handler to the integrator. | 
| void | AbstractFieldIntegrator. addEventHandler(FieldEventHandler<T> handler,
               double maxCheckInterval,
               double convergence,
               int maxIterationCount,
               BracketedRealFieldUnivariateSolver<T> solver)Add an event handler to the integrator. | 
| void | FirstOrderFieldIntegrator. addEventHandler(FieldEventHandler<T> handler,
               double maxCheckInterval,
               double convergence,
               int maxIterationCount,
               BracketedRealFieldUnivariateSolver<T> solver)Add an event handler to the integrator. | 
| Modifier and Type | Method and Description | 
|---|---|
| FieldEventHandler<T> | FieldEventState. getEventHandler()Get the underlying event handler. | 
| Constructor and Description | 
|---|
| FieldEventState(FieldEventHandler<T> handler,
               double maxCheckInterval,
               T convergence,
               int maxIterationCount,
               BracketedRealFieldUnivariateSolver<T> solver)Simple constructor. | 
Copyright © 2003–2016 The Apache Software Foundation. All rights reserved.