Package ec.simple
Class SimpleFinisher
java.lang.Object
ec.Finisher
ec.simple.SimpleFinisher
- All Implemented Interfaces:
Setup,Singleton,Serializable
SimpleFinisher is a default Finisher which doesn't do anything. Most
application's don't need Finisher facilities, so this version will work
fine.
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidfinishPopulation(EvolutionState state, int result) Doesn't do anything.voidsetup(EvolutionState state, Parameter base) Sets up the object by reading it from the parameters stored in state, built off of the parameter base base.
-
Constructor Details
-
SimpleFinisher
public SimpleFinisher()
-
-
Method Details
-
setup
Description copied from interface:SetupSets up the object by reading it from the parameters stored in state, built off of the parameter base base. If an ancestor implements this method, be sure to call super.setup(state,base); before you do anything else. -
finishPopulation
Doesn't do anything.- Specified by:
finishPopulationin classFinisher
-