Package org.opt4j.operator.mutate
Interface Mutate<G extends Genotype>
-
- Type Parameters:
G
- the type of genotype
- All Superinterfaces:
Operator<G>
- All Known Subinterfaces:
MutateInteger
,MutatePermutation
- All Known Implementing Classes:
MutateBoolean
,MutateDouble
,MutateDoubleDefault
,MutateDoubleElementwise
,MutateDoubleGauss
,MutateDoubleNonUniform
,MutateDoublePolynomial
,MutateDoubleUniform
,MutateGenericImplementation
,MutateIntegerRandom
,MutatePermutationInsert
,MutatePermutationMixed
,MutatePermutationRevert
,MutatePermutationSwap
public interface Mutate<G extends Genotype> extends Operator<G>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
mutate(G genotype, double p)
Performs a mutation for aGenotype
.
-