Uses of Class
org.cicirello.search.operators.reals.UndoableUniformMutation
Packages that use UndoableUniformMutation
Package
Description
This package includes classes that implement operators that create, mutate, etc, the the inputs
to functions with real-valued input parameters (represented with type double), such as is
required to solve function optimization problems using simulated annealing or other
metaheuristics.
-
Uses of UndoableUniformMutation in org.cicirello.search.operators.reals
Methods in org.cicirello.search.operators.reals that return UndoableUniformMutationModifier and TypeMethodDescriptionUndoableUniformMutation.copy()
Creates an identical copy of this object.static <T extends RealValued>
UndoableUniformMutation<T>UndoableUniformMutation.createUniformMutation()
Creates a Uniform mutation operator with radius parameter equal to 1 that supports the undo operation.static <T extends RealValued>
UndoableUniformMutation<T>UndoableUniformMutation.createUniformMutation
(double radius) Creates a Uniform mutation operator that supports the undo operation.static <T extends RealValued>
UndoableUniformMutation<T>UndoableUniformMutation.createUniformMutation
(double radius, double p) Create a Uniform mutation operator that supports the undo operation.static <T extends RealValued>
UndoableUniformMutation<T>UndoableUniformMutation.createUniformMutation
(double radius, double lowerBound, double upperBound) Creates a Uniform mutation operator, such that the mutate method constrains each mutated real value to lie in the interval [lowerBound, upperBound].static <T extends RealValued>
UndoableUniformMutation<T>UndoableUniformMutation.createUniformMutation
(double radius, int k) Create a Uniform mutation operator that supports the undo operation.UndoableUniformMutation.split()