public interface IndividualCompleter
IndividualCompleter
completes the evaluation process of
Individual
s. 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
Individual s if they are not
already evaluated. |
void |
complete(java.lang.Iterable<? extends Individual> iterable)
Decodes and evaluates all
Individual s in the Iterable if
they are not already evaluated. |
void complete(java.lang.Iterable<? extends Individual> iterable) throws TerminationException
Individual
s 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
Individual
s if they are not
already evaluated.individuals
- the individuals to be completedTerminationException
- if the optimization is terminated