Uses of Class
org.hipparchus.util.IterationEvent
Packages that use IterationEvent
Package
Description
Linear algebra support.
Convenience routines and common data structures used throughout the Hipparchus library.
- 
Uses of IterationEvent in org.hipparchus.linear
Subclasses of IterationEvent in org.hipparchus.linearModifier and TypeClassDescriptionclassA default concrete implementation of the abstract classIterativeLinearSolverEvent.classThis is the base class for all events occurring during the iterations of aIterativeLinearSolver. - 
Uses of IterationEvent in org.hipparchus.util
Methods in org.hipparchus.util with parameters of type IterationEventModifier and TypeMethodDescriptionvoidIterationManager.fireInitializationEvent(IterationEvent e) Informs all registered listeners that the initial phase (prior to the main iteration loop) has been completed.voidIterationManager.fireIterationPerformedEvent(IterationEvent e) Informs all registered listeners that a new iteration (in the main iteration loop) has been performed.voidIterationManager.fireIterationStartedEvent(IterationEvent e) Informs all registered listeners that a new iteration (in the main iteration loop) has been started.voidIterationManager.fireTerminationEvent(IterationEvent e) Informs all registered listeners that the final phase (post-iterations) has been completed.voidIterationListener.initializationPerformed(IterationEvent e) Invoked after completion of the initial phase of the iterative algorithm (prior to the main iteration loop).voidIterationListener.iterationPerformed(IterationEvent e) Invoked each time an iteration is completed (in the main iteration loop).voidIterationListener.iterationStarted(IterationEvent e) Invoked each time a new iteration is completed (in the main iteration loop).voidIterationListener.terminationPerformed(IterationEvent e) Invoked after completion of the operations which occur after breaking out of the main iteration loop.