public interface IndividualCompleter
IndividualCompleter completes the evaluation process of
Individuals. In particular, the individuals are decoded using a
Decoder and evaluated using an Evaluator.| Modifier and Type | Method and Description |
|---|---|
void |
complete(Individual... individuals)
Decodes and evaluates all given
Individuals if they are not
already evaluated. |
void |
complete(Iterable<? extends Individual> iterable)
Decodes and evaluates all
Individuals in the Iterable if
they are not already evaluated. |
void complete(Iterable<? extends Individual> iterable) throws TerminationException
Individuals in the Iterable if
they are not already evaluated.iterable - the set of individuals to be completedTerminationException - if the optimization is terminatedvoid complete(Individual... individuals) throws TerminationException
Individuals if they are not
already evaluated.individuals - the individuals to be completedTerminationException - if the optimization is terminated