Package org.opt4j.operator.neighbor
Interface Neighbor<G extends Genotype>
-
- Type Parameters:
G
- the type of genotype
- All Superinterfaces:
Operator<G>
- All Known Subinterfaces:
NeighborInteger
,NeighborPermutation
- All Known Implementing Classes:
NeighborBoolean
,NeighborDouble
,NeighborGenericImplementation
,NeighborIntegerRandom
,NeighborPermutationInsert
,NeighborPermutationMixed
,NeighborPermutationRevert
,NeighborPermutationSwap
public interface Neighbor<G extends Genotype> extends Operator<G>
TheNeighbor
operator as it is used for Simulated Annealing.- See Also:
SimulatedAnnealing
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
neighbor(G genotype)
Moves theGenotype
to a neighbor.
-