public interface SearchListener
| Modifier and Type | Method and Description |
|---|---|
void |
fitnessEvaluation(Chromosome individual)
Called after every single fitness evaluation
|
void |
iteration(GeneticAlgorithm<?> algorithm)
Called after each iteration of the search
|
void |
modification(Chromosome individual)
Called before a chromosome is mutated
|
void |
searchFinished(GeneticAlgorithm<?> algorithm)
Called after the last iteration
|
void |
searchStarted(GeneticAlgorithm<?> algorithm)
Called when a new search is started
|
void searchStarted(GeneticAlgorithm<?> algorithm)
algorithm - a GeneticAlgorithm object.void iteration(GeneticAlgorithm<?> algorithm)
algorithm - a GeneticAlgorithm object.void searchFinished(GeneticAlgorithm<?> algorithm)
algorithm - a GeneticAlgorithm object.void fitnessEvaluation(Chromosome individual)
individual - a Chromosome object.void modification(Chromosome individual)
individual - a Chromosome object.Copyright © 2010–2017 EvoSuite. All rights reserved.