Uses of Interface
org.apache.commons.math.ode.events.EventHandler
-
Packages that use EventHandler Package Description org.apache.commons.math.ode This package provides classes to solve Ordinary Differential Equations problems.org.apache.commons.math.ode.events This package provides classes to handle discrete events occurring during Ordinary Differential Equations integration.org.apache.commons.math.ode.nonstiff This package provides classes to solve non-stiff Ordinary Differential Equations problems. -
-
Uses of EventHandler in org.apache.commons.math.ode
Methods in org.apache.commons.math.ode that return types with arguments of type EventHandler Modifier and Type Method Description java.util.Collection<EventHandler>
AbstractIntegrator. getEventHandlers()
Get all the event handlers that have been added to the integrator.java.util.Collection<EventHandler>
ODEIntegrator. getEventHandlers()
Get all the event handlers that have been added to the integrator.Methods in org.apache.commons.math.ode with parameters of type EventHandler Modifier and Type Method Description void
AbstractIntegrator. addEventHandler(EventHandler handler, double maxCheckInterval, double convergence, int maxIterationCount)
Add an event handler to the integrator.void
ODEIntegrator. addEventHandler(EventHandler handler, double maxCheckInterval, double convergence, int maxIterationCount)
Add an event handler to the integrator. -
Uses of EventHandler in org.apache.commons.math.ode.events
Methods in org.apache.commons.math.ode.events that return EventHandler Modifier and Type Method Description EventHandler
EventState. getEventHandler()
Get the underlying event handler.Methods in org.apache.commons.math.ode.events that return types with arguments of type EventHandler Modifier and Type Method Description java.util.Collection<EventHandler>
CombinedEventsManager. getEventsHandlers()
Deprecated.Get all the events handlers that have been added to the manager.Methods in org.apache.commons.math.ode.events with parameters of type EventHandler Modifier and Type Method Description void
CombinedEventsManager. addEventHandler(EventHandler handler, double maxCheckInterval, double convergence, int maxIterationCount)
Deprecated.Add an events handler.Constructors in org.apache.commons.math.ode.events with parameters of type EventHandler Constructor Description EventState(EventHandler handler, double maxCheckInterval, double convergence, int maxIterationCount)
Simple constructor. -
Uses of EventHandler in org.apache.commons.math.ode.nonstiff
Methods in org.apache.commons.math.ode.nonstiff with parameters of type EventHandler Modifier and Type Method Description void
GraggBulirschStoerIntegrator. addEventHandler(EventHandler function, double maxCheckInterval, double convergence, int maxIterationCount)
Add an event handler to the integrator.
-