Uses of Class
org.cicirello.search.operators.reals.UndoableUniformMutation
-
Packages that use UndoableUniformMutation Package Description org.cicirello.search.operators.reals 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 UndoableUniformMutation Modifier and Type Method Description UndoableUniformMutation<T>
UndoableUniformMutation. 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, int k)
Create a Uniform mutation operator that supports the undo operation.UndoableUniformMutation<T>
UndoableUniformMutation. split()
-