Uses of Interface
org.cicirello.search.SingleSolutionMetaheuristic
Packages that use SingleSolutionMetaheuristic
Package
Description
This package includes classes and interfaces related to implementing metaheuristic search
algorithms in general, rather than specific to a particular metaheuristic.
This package includes classes and interfaces directly related to implementing evolutionary
algorithms.
This package includes classes and interfaces directly related to implementing simulated
annealing.
-
Uses of SingleSolutionMetaheuristic in org.cicirello.search
Methods in org.cicirello.search that return SingleSolutionMetaheuristic -
Uses of SingleSolutionMetaheuristic in org.cicirello.search.evo
Classes in org.cicirello.search.evo that implement SingleSolutionMetaheuristicModifier and TypeClassDescriptionclassOnePlusOneEvolutionaryAlgorithm<T extends Copyable<T>>This class implements a (1+1)-EA.final classThis class implements a (1+1)-GA, a special case of a (1+1)-EA, where solutions are represented with a vector of bits. -
Uses of SingleSolutionMetaheuristic in org.cicirello.search.sa
Classes in org.cicirello.search.sa that implement SingleSolutionMetaheuristicModifier and TypeClassDescriptionfinal classSimulatedAnnealing<T extends Copyable<T>>This class is an implementation of the metaheuristic known as simulated annealing.