Interface IndividualCompleter

All Known Implementing Classes:
ParallelIndividualCompleter, SequentialIndividualCompleter

public interface IndividualCompleter
An IndividualCompleter completes the evaluation process of Individuals. In particular, the individuals are decoded using a Decoder and evaluated using an Evaluator.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    complete(Iterable<? extends Individual> iterable)
    Decodes and evaluates all Individuals in the Iterable if they are not already evaluated.
    void
    complete(Individual... individuals)
    Decodes and evaluates all given Individuals if they are not already evaluated.