ec.coevolve
Interface GroupedProblemForm
- public interface GroupedProblemForm
GroupedProblemForm is an interface which defines methods
for Problems to implement simple coevolutionary
evaluation.
preprocessPopulation
public void preprocessPopulation(EvolutionState state,
Population pop)
- Set up the population pop (such as fitness information) prior to evaluation.
Although this method is not static, you should not use it to write to any instance
variables in the GroupedProblem instance; this is because it's possible that
the instance used is in fact the prototype, and you will have no guarantees that
your instance variables will remain valid during the evaluate(...) process.
Do not assume that pop will be the same as state.pop -- it
may not. state is only provided to give you access to EvolutionState
features.
postprocessPopulation
public void postprocessPopulation(EvolutionState state,
Population pop)
- Finish processing the population (such as fitness information) after evaluation.
Although this method is not static, you should not use it to write to any instance
variables in the GroupedProblem instance; this is because it's possible that
the instance used is in fact the prototype, and you will have no guarantees that
your instance variables will remain valid during the evaluate(...) process.
Do not assume that pop will be the same as state.pop -- it
may not. state is only provided to give you access to EvolutionState
features.
evaluate
public void evaluate(EvolutionState state,
Individual[] ind,
boolean[] updateFitness,
int threadnum)
- Evaluates the individuals found in ind together. If updateFitness[i] is true,
then you should use this evaluation to update the fitness of the individual in
ind[i]. Individuals which are updated should have their fitnesses modified so
that immediately after evaluation (and prior to postprocessPopulation(...) being
called) individuals' fitnesses can be checked to see which is better than which.
Do not assume that the individuals in ind will actually be in state.pop
(they may not -- this method may be called at the end of a run to determine the
best individual of the run in some kind of contest).