Uses of Interface
org.cicirello.search.problems.IntegerCostOptimizationProblem
Package
Description
This package includes classes and interfaces directly related to implementing evolutionary
algorithms.
This package includes classes and interfaces directly related to implementing hill climbers.
Package of classes and interfaces related to representing computational problems, as well as
classes implementing a variety of specific computational problems.
Classes and interfaces related to the Bin Packing.
Package of classes and interfaces related to representing and solving scheduling problems, which
includes implementations of constructive heuristics for scheduling problems.
Classes and interfaces related to the Traveling Salesperson Problem (TSP).
This package includes classes and interfaces directly related to implementing simulated
annealing.
This package includes classes and interfaces directly related to implementing stochastic sampling
algorithms.
-
Uses of IntegerCostOptimizationProblem in org.cicirello.search.evo
ModifierConstructorDescriptionConstructs a fitness function that transforms the cost of solution s to fitness with the following transformation: fitness(s) = 1.0 / (1.0 + problem.cost(s) - problem.minCost()).InverseCostFitnessFunction
(IntegerCostOptimizationProblem<T> problem, double c) Constructs a fitness function that transforms the cost of solution s to fitness with the following transformation: fitness(s) = c / (c + problem.cost(s) - problem.minCost()).Constructs a fitness function that transforms the cost of solution s to fitness with the following transformation: fitness(s) = -cost(s).OnePlusOneEvolutionaryAlgorithm
(IntegerCostOptimizationProblem<T> problem, UndoableMutationOperator<T> mutation, Initializer<T> initializer) Creates a OnePlusOneEvolutionaryAlgorithm instance for integer-valued optimization problems.OnePlusOneEvolutionaryAlgorithm
(IntegerCostOptimizationProblem<T> problem, UndoableMutationOperator<T> mutation, Initializer<T> initializer, ProgressTracker<T> tracker) Creates a OnePlusOneEvolutionaryAlgorithm instance for integer-valued optimization problems.OnePlusOneGeneticAlgorithm
(IntegerCostOptimizationProblem<BitVector> problem, double m, int bitLength) Creates a OnePlusOneGeneticAlgorithm instance for integer-valued optimization problems.OnePlusOneGeneticAlgorithm
(IntegerCostOptimizationProblem<BitVector> problem, double m, int bitLength, ProgressTracker<BitVector> tracker) Creates a OnePlusOneGeneticAlgorithm instance for integer-valued optimization problems. -
Uses of IntegerCostOptimizationProblem in org.cicirello.search.hc
ModifierConstructorDescriptionFirstDescentHillClimber
(IntegerCostOptimizationProblem<T> problem, IterableMutationOperator<T> mutation, Initializer<T> initializer) Constructs a first descent hill climber object for integer-valued optimization problem.FirstDescentHillClimber
(IntegerCostOptimizationProblem<T> problem, IterableMutationOperator<T> mutation, Initializer<T> initializer, ProgressTracker<T> tracker) Constructs a first descent hill climber object for integer-valued optimization problem.SteepestDescentHillClimber
(IntegerCostOptimizationProblem<T> problem, IterableMutationOperator<T> mutation, Initializer<T> initializer) Constructs a steepest descent hill climber object for integer-valued optimization problem.SteepestDescentHillClimber
(IntegerCostOptimizationProblem<T> problem, IterableMutationOperator<T> mutation, Initializer<T> initializer, ProgressTracker<T> tracker) Constructs a steepest descent hill climber object for integer-valued optimization problem. -
Uses of IntegerCostOptimizationProblem in org.cicirello.search.problems
Modifier and TypeClassDescriptionfinal class
The BoundMax class is an implementation of a generalization of the well-known OneMax problem, often used in benchmarking genetic algorithms and other metaheuristics.final class
IntegerCostFunctionScaler<T extends Copyable<T>>
This is a wrapper class forIntegerCostOptimizationProblem
objects that enables scaling all cost values by a positive constant.final class
This class is an implementation of the Largest Common Subgraph problem, an NP-Hard combinatorial optimization problem.final class
The OneMax class is an implementation of the well-known OneMax problem, often used in benchmarking genetic algorithms and other metaheuristics.final class
The OneMaxAckley class is an implementation of the well-known OneMax problem, often used in benchmarking genetic algorithms and other metaheuristics.final class
The Permutation in a Haystack is a family of optimization problems that can be parameterized to the various types of permutation problem (e.g., absolute versus relative positioning).static final class
This class implements a mapping between Permutation problems and BitVector problems, where cost values are of type int.final class
This class implements the Porcupine landscape (Ackley, 1985), which is a very rugged search landscape, with an exponential number of local optima.final class
This class is an implementation of the Quadratic Assignment Problem (QAP), an NP-Hard optimization problem.final class
Implementation of the Royal Road problem of Mitchell, Forrest, and Holland, both the variation with stepping stones and the one without.final class
This class implements the benchmarking problem known as TwoMax.final class
This class implements a variation of the benchmarking problem known as TwoMax.ModifierConstructorDescriptionIntegerCost
(IntegerCostOptimizationProblem<Permutation> problem, int permutationLength) Initializes the mapping between Permutation problem and BitVector problem for a specific permutation length.IntegerCostFunctionScaler
(IntegerCostOptimizationProblem<T> problem, int scale) Constructs the IntegerCostFunctionScaler. -
Uses of IntegerCostOptimizationProblem in org.cicirello.search.problems.binpack
Modifier and TypeClassDescriptionclass
This class, and its nested classes, implements the Bin Packing problem.static final class
Generates instances of the Bin Packing problem where the optimal solution is comprised of all full triplet bins (each bin in optimal solution has exactly 3 items that fills the bin to capacity).static final class
Generates instances of the Bin Packing problem with item sizes that are generated uniformly at random. -
Uses of IntegerCostOptimizationProblem in org.cicirello.search.problems.scheduling
Modifier and TypeInterfaceDescriptioninterface
Implement this interface to define a single machine scheduling problem.Modifier and TypeClassDescriptionfinal class
Implements the common scheduling cost function known as makespan.final class
Implements the scheduling cost function known as maximum flowtime (which we want to minimize).final class
Implements the scheduling cost function known as maximum lateness, which we want to minimize.final class
Implements the scheduling cost function known as maximum tardiness, which we want to minimize.final class
Implements the scheduling cost function known as weighted earliness plus weighted tardiness.final class
Implements the scheduling cost function known as weighted flowtime.final class
Implements the scheduling cost function known as weighted lateness.final class
Implements the scheduling cost function known as weighted number of tardy jobs, which we want to minimize.final class
Implements the scheduling cost function known as weighted squared tardiness.final class
Implements the scheduling cost function known as weighted tardiness. -
Uses of IntegerCostOptimizationProblem in org.cicirello.search.problems.tsp
Modifier and TypeClassDescriptionstatic final class
This class implements the Traveling Salesperson Problem (TSP), and its variant, the Asymmetric Traveling Salesperson Problem (ATSP), by generating a random distance matrix, with integer cost edges.static final class
Cost function for the Traveling Salesperson Problem (TSP), where edge costs are integer valued.static final class
Cost function for the Traveling Salesperson Problem (TSP), where edge costs are integer valued, and where all edge costs between pairs of cities are precomputed. -
Uses of IntegerCostOptimizationProblem in org.cicirello.search.sa
ModifierConstructorDescriptionSimulatedAnnealing
(IntegerCostOptimizationProblem<T> problem, UndoableMutationOperator<T> mutation, Initializer<T> initializer) Creates a SimulatedAnnealing search instance for integer-valued optimization problems, with a default annealing schedule ofSelfTuningLam
, which is the Self-Tuning Lam annealing schedule of Cicirello (2021).SimulatedAnnealing
(IntegerCostOptimizationProblem<T> problem, UndoableMutationOperator<T> mutation, Initializer<T> initializer, ProgressTracker<T> tracker) Creates a SimulatedAnnealing search instance for integer-valued optimization problems, with a default annealing schedule ofSelfTuningLam
, which is the Self-Tuning Lam annealing schedule of Cicirello (2021).SimulatedAnnealing
(IntegerCostOptimizationProblem<T> problem, UndoableMutationOperator<T> mutation, Initializer<T> initializer, ProgressTracker<T> tracker, SimpleLocalMetaheuristic<T> hc) Creates a SimulatedAnnealing search instance for integer-valued optimization problems, with a default annealing schedule ofSelfTuningLam
, which is the Self-Tuning Lam annealing schedule of Cicirello (2021), and which runs a hill climber as a post-processing step.SimulatedAnnealing
(IntegerCostOptimizationProblem<T> problem, UndoableMutationOperator<T> mutation, Initializer<T> initializer, AnnealingSchedule anneal) Creates a SimulatedAnnealing search instance for integer-valued optimization problems.SimulatedAnnealing
(IntegerCostOptimizationProblem<T> problem, UndoableMutationOperator<T> mutation, Initializer<T> initializer, AnnealingSchedule anneal, ProgressTracker<T> tracker) Creates a SimulatedAnnealing search instance for integer-valued optimization problems.SimulatedAnnealing
(IntegerCostOptimizationProblem<T> problem, UndoableMutationOperator<T> mutation, Initializer<T> initializer, AnnealingSchedule anneal, ProgressTracker<T> tracker, SimpleLocalMetaheuristic<T> hc) Creates a SimulatedAnnealing search instance for integer-valued optimization problems that runs a hill climber as a post-processing step.SimulatedAnnealing
(IntegerCostOptimizationProblem<T> problem, UndoableMutationOperator<T> mutation, Initializer<T> initializer, AnnealingSchedule anneal, SimpleLocalMetaheuristic<T> hc) Creates a SimulatedAnnealing search instance for integer-valued optimization problems that runs a hill climber as a post-processing step.SimulatedAnnealing
(IntegerCostOptimizationProblem<T> problem, UndoableMutationOperator<T> mutation, Initializer<T> initializer, SimpleLocalMetaheuristic<T> hc) Creates a SimulatedAnnealing search instance for integer-valued optimization problems, with a default annealing schedule ofSelfTuningLam
, which is the Self-Tuning Lam annealing schedule of Cicirello (2021), and which runs a hill climber as a post-processing step. -
Uses of IntegerCostOptimizationProblem in org.cicirello.search.ss
ModifierConstructorDescriptionIterativeSampling
(IntegerCostOptimizationProblem<T> problem, Initializer<T> initializer) Constructs an iterative sampling search for a integer-valued optimization problem.IterativeSampling
(IntegerCostOptimizationProblem<T> problem, Initializer<T> initializer, ProgressTracker<T> tracker) Constructs an iterative sampling search for a integer-valued optimization problem.