Interface IMonitorInitialize
-
- All Superinterfaces:
ISearchMonitor
- All Known Implementing Classes:
LogStatEveryXXms
,SearchMonitorList
public interface IMonitorInitialize extends ISearchMonitor
An interface to monitor the initialization action of the search loop- Since:
- 13/12/12
- Author:
- Charles Prud'homme
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default void
afterInitialize(boolean correct)
Actions to execute after initialisation of the solverdefault void
beforeInitialize()
Actions to execute before initialisation of the solver
-
-
-
Method Detail
-
beforeInitialize
default void beforeInitialize()
Actions to execute before initialisation of the solver
-
afterInitialize
default void afterInitialize(boolean correct)
Actions to execute after initialisation of the solver- Parameters:
correct
- equals false if initialization failed, true otherwise.
-
-