package javaeva.server.go.operators.mutation; import javaeva.server.go.individuals.AbstractEAIndividual; import javaeva.server.go.populations.Population; import javaeva.server.go.problems.InterfaceOptimizationProblem; /** * Created by IntelliJ IDEA. * User: streiche * Date: 25.03.2003 * Time: 11:42:42 * To change this template use Options | File Templates. */ public class NoMutation implements InterfaceMutation, java.io.Serializable { /** This method will enable you to clone a given mutation operator * @return The clone */ public Object clone() { return new NoMutation(); } /** This method allows you to evaluate wether two mutation operators * are actually the same. * @param mutator The other mutation operator */ public boolean equals(Object mutator) { if (mutator instanceof NoMutation) return true; else return false; } /** This method allows you to init the mutation operator * @param individual The individual that will be mutated. * @param opt The optimization problem. */ public void init(AbstractEAIndividual individual, InterfaceOptimizationProblem opt) { } /** This method will mutate a given AbstractEAIndividual. If the individual * doesn't implement InterfaceGAIndividual nothing happens. * @param individual The individual that is to be mutated */ public void mutate(AbstractEAIndividual individual) { } /** This method allows you to perform either crossover on the strategy parameters * or to deal in some other way with the crossover event. * @param indy1 The original mother * @param partners The original partners */ public void crossoverOnStrategyParameters(AbstractEAIndividual indy1, Population partners) { // nothing to do here } /** This method allows you to get a string representation of the mutation * operator * @return A descriptive string. */ public String getStringRepresentation() { return "No mutation"; } /********************************************************************************************************************** * These are for GUI */ /** This method allows the CommonJavaObjectEditorPanel to read the * name to the current object. * @return The name. */ public String getName() { return "No mutation"; } /** This method returns a global info string * @return description */ public String globalInfo() { return "This thing does nothing, really!"; } }