Uses of Class
org.cicirello.search.operators.integers.UndoableUniformMutation
Packages that use UndoableUniformMutation
Package
Description
This package includes classes that implement operators that create, mutate, etc, integer valued
representations.
-
Uses of UndoableUniformMutation in org.cicirello.search.operators.integers
Methods in org.cicirello.search.operators.integers that return UndoableUniformMutationModifier and TypeMethodDescriptionUndoableUniformMutation.copy()
Creates an identical copy of this object.static <T extends IntegerValued>
UndoableUniformMutation<T>UndoableUniformMutation.createUniformMutation()
Creates a Uniform mutation operator with radius parameter equal to 1 that supports the undo operation.static <T extends IntegerValued>
UndoableUniformMutation<T>UndoableUniformMutation.createUniformMutation
(int radius) Creates a Uniform mutation operator that supports the undo operation.static <T extends IntegerValued>
UndoableUniformMutation<T>UndoableUniformMutation.createUniformMutation
(int radius, double p) Create a Uniform mutation operator that supports the undo operation.static <T extends IntegerValued>
UndoableUniformMutation<T>UndoableUniformMutation.createUniformMutation
(int radius, int k) Create a Uniform mutation operator that supports the undo operation.static <T extends IntegerValued>
UndoableUniformMutation<T>UndoableUniformMutation.createUniformMutation
(int radius, int lowerBound, int upperBound) Creates a Uniform mutation operator, such that the mutate method constrains each mutated int value to lie in the interval [lowerBound, upperBound].UndoableUniformMutation.split()