Package org.opt4j.core.optimizer
Interface OptimizerIterationListener
-
- All Known Implementing Classes:
AbstractLogger
,Opt4JTask
,Progress
,TsvLogger
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface OptimizerIterationListener
TheOptimizerIterationListener
is used to monitor the iteration of theOptimizer
. To add anOptimizerIterationListener
use the methodOpt4JModule.addOptimizerIterationListener(Class)
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
iterationComplete(int iteration)
Invoked if theOptimizer
completes an iteration.
-
-
-
Method Detail
-
iterationComplete
void iterationComplete(int iteration)
Invoked if theOptimizer
completes an iteration.- Parameters:
iteration
- the completed iteration
-
-