jenes.tutorials.problem3
Class TSPScrambleMutator
java.lang.Object
jenes.stage.AbstractStage<T>
jenes.stage.operator.Operator<T>
jenes.stage.operator.Mutator<IntegerChromosome>
jenes.tutorials.problem3.TSPScrambleMutator
public class TSPScrambleMutator
- extends Mutator<IntegerChromosome>
Algorithm description:
Two random indexes, i1 and i2, are choosed; the order of the elements within the
range [i1,i2] changes randomly.
e.g.
i1=0; i2=3
position: 0 1 2 3 4 5
start_chrom: 5 2 1 4 6 3
end_chrom: 2 5 4 1 6 3
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
TSPScrambleMutator
public TSPScrambleMutator(double pMut)
mutate
protected void mutate(Individual<IntegerChromosome> t)
- Description copied from class:
Mutator
- Mutates a single individual. This abstract method is implemented according to
a mutation policy
- Specified by:
mutate
in class Mutator<IntegerChromosome>
- Parameters:
t
- the individual to mutate
randomize
public void randomize(IntegerChromosome chrom,
int min,
int max)
- Randomizes the elements chromosome within the range [min,max]
- Parameters:
chrom
- the individual to mutatemin
- the lower boundmax
- the upper bound