Package org.hipparchus.util
Interface IterationListener
- All Superinterfaces:
EventListener
The listener interface for receiving events occurring in an iterative
algorithm.
-
Method Summary
Modifier and TypeMethodDescriptionvoidInvoked after completion of the initial phase of the iterative algorithm (prior to the main iteration loop).voidInvoked each time an iteration is completed (in the main iteration loop).voidInvoked each time a new iteration is completed (in the main iteration loop).voidInvoked after completion of the operations which occur after breaking out of the main iteration loop.
-
Method Details
-
initializationPerformed
Invoked after completion of the initial phase of the iterative algorithm (prior to the main iteration loop).- Parameters:
e- TheIterationEventobject.
-
iterationPerformed
Invoked each time an iteration is completed (in the main iteration loop).- Parameters:
e- TheIterationEventobject.
-
iterationStarted
Invoked each time a new iteration is completed (in the main iteration loop).- Parameters:
e- TheIterationEventobject.
-
terminationPerformed
Invoked after completion of the operations which occur after breaking out of the main iteration loop.- Parameters:
e- TheIterationEventobject.
-