Uses of Interface
org.hipparchus.ode.events.ODEEventHandler
-
Packages that use ODEEventHandler Package Description org.hipparchus.migration.ode.events This package provides migration classes from Apache Commons Math to Hipparchus.org.hipparchus.ode This package provides classes to solve Ordinary Differential Equations problems.org.hipparchus.ode.events Events -
-
Uses of ODEEventHandler in org.hipparchus.migration.ode.events
Subinterfaces of ODEEventHandler in org.hipparchus.migration.ode.events Modifier and Type Interface Description interface
EventHandler
Deprecated.as of 1.0, replaced withODEEventHandler
-
Uses of ODEEventHandler in org.hipparchus.ode
Methods in org.hipparchus.ode that return types with arguments of type ODEEventHandler Modifier and Type Method Description Collection<ODEEventHandler>
AbstractIntegrator. getEventHandlers()
Get all the event handlers that have been added to the integrator.Collection<ODEEventHandler>
ODEIntegrator. getEventHandlers()
Get all the event handlers that have been added to the integrator.Methods in org.hipparchus.ode with parameters of type ODEEventHandler Modifier and Type Method Description void
AbstractIntegrator. addEventHandler(ODEEventHandler handler, double maxCheckInterval, double convergence, int maxIterationCount)
Add an event handler to the integrator.void
AbstractIntegrator. addEventHandler(ODEEventHandler handler, double maxCheckInterval, double convergence, int maxIterationCount, BracketedUnivariateSolver<UnivariateFunction> solver)
Add an event handler to the integrator.void
ODEIntegrator. addEventHandler(ODEEventHandler handler, double maxCheckInterval, double convergence, int maxIterationCount)
Add an event handler to the integrator.void
ODEIntegrator. addEventHandler(ODEEventHandler handler, double maxCheckInterval, double convergence, int maxIterationCount, BracketedUnivariateSolver<UnivariateFunction> solver)
Add an event handler to the integrator. -
Uses of ODEEventHandler in org.hipparchus.ode.events
Classes in org.hipparchus.ode.events that implement ODEEventHandler Modifier and Type Class Description class
EventFilter
Wrapper used to detect only increasing or decreasing events.Methods in org.hipparchus.ode.events that return ODEEventHandler Modifier and Type Method Description ODEEventHandler
EventState. getEventHandler()
Get the underlying event handler.Constructors in org.hipparchus.ode.events with parameters of type ODEEventHandler Constructor Description EventFilter(ODEEventHandler rawHandler, FilterType filter)
Wrap anevent handler
.EventState(ODEEventHandler handler, double maxCheckInterval, double convergence, int maxIterationCount, BracketedUnivariateSolver<UnivariateFunction> solver)
Simple constructor.
-