Package ec.simple

Class SimpleFinisher

java.lang.Object
ec.Finisher
ec.simple.SimpleFinisher
All Implemented Interfaces:
Setup, Singleton, Serializable

public class SimpleFinisher extends Finisher
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 Details

    • SimpleFinisher

      public SimpleFinisher()
  • Method Details

    • setup

      public void setup(EvolutionState state, Parameter base)
      Description copied from interface: Setup
      Sets 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

      public void finishPopulation(EvolutionState state, int result)
      Doesn't do anything.
      Specified by:
      finishPopulation in class Finisher