Uses of Interface
org.cicirello.search.problems.Problem
Packages that use Problem
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 multithreaded search implementations, as well as classes and interfaces
related to implementing multithreaded metaheuristics.
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 related to implementing multistart metaheuristics
(i.e., metaheuristics that periodically restart, and return the best solution across a number of
such restarts).
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 Problem in org.cicirello.search
Methods in org.cicirello.search that return ProblemModifier and TypeMethodDescriptionTrackableSearch.getProblem()Gets a reference to the problem that this search is solving. -
Uses of Problem in org.cicirello.search.concurrent
Methods in org.cicirello.search.concurrent that return ProblemModifier and TypeMethodDescriptionParallelMetaheuristic.getProblem()TimedParallelMultistarter.getProblem() -
Uses of Problem in org.cicirello.search.evo
Methods in org.cicirello.search.evo that return ProblemModifier and TypeMethodDescriptionFitnessFunction.getProblem()Gets a reference to the problem that this fitness function is for.InverseCostFitnessFunction.getProblem()OnePlusOneEvolutionaryAlgorithm.getProblem() -
Uses of Problem in org.cicirello.search.hc
Methods in org.cicirello.search.hc that return ProblemModifier and TypeMethodDescriptionFirstDescentHillClimber.getProblem()SteepestDescentHillClimber.getProblem() -
Uses of Problem in org.cicirello.search.problems
Subinterfaces of Problem in org.cicirello.search.problemsModifier and TypeInterfaceDescriptioninterfaceIntegerCostOptimizationProblem<T extends Copyable<T>>The IntegerCostOptimizationProblem interface provides search algorithms with a way to interact with an instance of an optimization problem without the need to know the specifics of the problem (e.g., traveling salesperson, bin packing, etc).interfaceOptimizationProblem<T extends Copyable<T>>The OptimizationProblem interface provides search algorithms with a way to interact with an instance of an optimization problem without the need to know the specifics of the problem (e.g., real-valued function optimization, traveling salesperson, bin packing, etc).Classes in org.cicirello.search.problems that implement ProblemModifier and TypeClassDescriptionfinal classThe BoundMax class is an implementation of a generalization of the well-known OneMax problem, often used in benchmarking genetic algorithms and other metaheuristics.final classCostFunctionScaler<T extends Copyable<T>>This is a wrapper class forOptimizationProblemobjects that enables scaling all cost values by a positive constant.final classA continuous function with a single suboptimal local minimum, and a single global minimum, and a 0 derivative inflexion point, defined for inputs x in [0.0, 1.0].final classA continuous function with a large number of local minimums, and a single global minimum, defined for input x in [0.5, 2.5].final classImplementation of Holland's Royal Road problem, as described in the following paper:
Terry Jones.final classIntegerCostFunctionScaler<T extends Copyable<T>>This is a wrapper class forIntegerCostOptimizationProblemobjects that enables scaling all cost values by a positive constant.final classThis class is an implementation of the Largest Common Subgraph problem, an NP-Hard combinatorial optimization problem.final classThis class implements Ackley's Mix problem, an artificial landscape that is a mix of the OneMax, TwoMax, Trap, and Plateau problems, which provides for a landscape that combines all of the properties of these benchmarking problems.final classThe OneMax class is an implementation of the well-known OneMax problem, often used in benchmarking genetic algorithms and other metaheuristics.final classThe OneMaxAckley class is an implementation of the well-known OneMax problem, often used in benchmarking genetic algorithms and other metaheuristics.final classThe 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 classThis class implements a mapping between Permutation problems and BitVector problems, where cost values are of type double.static final classThis class implements a mapping between Permutation problems and BitVector problems, where cost values are of type int.final classThis class implements Ackley's Plateaus problem, an artificial search landscape over the space of bitstrings that is characterized by large flat regions known as plateaus.final classThis class defines polynomial root finding as an optimization problem, enabling solving via simulated annealing or other metaheuristic optimization algorithms.final classThis class implements the Porcupine landscape (Ackley, 1985), which is a very rugged search landscape, with an exponential number of local optima.final classThis class is an implementation of the Quadratic Assignment Problem (QAP), an NP-Hard optimization problem.final classImplementation of the Royal Road problem of Mitchell, Forrest, and Holland, both the variation with stepping stones and the one without.final classThis class implements Ackley's Trap function, which defines a fitness landscape with a single global optima, and a single sub-optimal local optima, such that most of the search landscape is within the attraction basin of the local optima.final classThis class implements the benchmarking problem known as TwoMax.final classThis class implements a variation of the benchmarking problem known as TwoMax. -
Uses of Problem in org.cicirello.search.problems.binpack
Classes in org.cicirello.search.problems.binpack that implement ProblemModifier and TypeClassDescriptionclassThis class, and its nested classes, implements the Bin Packing problem.static final classGenerates 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 classGenerates instances of the Bin Packing problem with item sizes that are generated uniformly at random. -
Uses of Problem in org.cicirello.search.problems.scheduling
Subinterfaces of Problem in org.cicirello.search.problems.schedulingModifier and TypeInterfaceDescriptioninterfaceImplement this interface to define a single machine scheduling problem.Classes in org.cicirello.search.problems.scheduling that implement ProblemModifier and TypeClassDescriptionfinal classImplements the common scheduling cost function known as makespan.final classImplements the scheduling cost function known as maximum flowtime (which we want to minimize).final classImplements the scheduling cost function known as maximum lateness, which we want to minimize.final classImplements the scheduling cost function known as maximum tardiness, which we want to minimize.final classImplements the scheduling cost function known as weighted earliness plus weighted tardiness.final classImplements the scheduling cost function known as weighted flowtime.final classImplements the scheduling cost function known as weighted lateness.final classImplements the scheduling cost function known as weighted number of tardy jobs, which we want to minimize.final classImplements the scheduling cost function known as weighted squared tardiness.final classImplements the scheduling cost function known as weighted tardiness. -
Uses of Problem in org.cicirello.search.problems.tsp
Classes in org.cicirello.search.problems.tsp that implement ProblemModifier and TypeClassDescriptionclassThis class serves as an abstract base class for the various classes that implement variations of the Traveling Salesperson Problem provided by the library.classThis class and its nested classes implement the Traveling Salesperson Problem (TSP), and its variant, the Asymmetric Traveling Salesperson Problem (ATSP), by generating a random distance matrix.static final classThis class implements the Traveling Salesperson Problem (TSP), and its variant, the Asymmetric Traveling Salesperson Problem (ATSP), by generating a random distance matrix, with floating-point cost edges.static final classThis 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.classThis class and its nested classes implement the Traveling Salesperson Problem (TSP), such that cities are 2D points, and edge costs is the distance between them.static final classCost function for the Traveling Salesperson Problem (TSP), where edge costs are floating-point valued.static final classCost function for the Traveling Salesperson Problem (TSP), where edge costs are floating-point valued, and where all edge costs between pairs of cities are precomputed.static final classCost function for the Traveling Salesperson Problem (TSP), where edge costs are integer valued.static final classCost function for the Traveling Salesperson Problem (TSP), where edge costs are integer valued, and where all edge costs between pairs of cities are precomputed.Methods in org.cicirello.search.problems.tsp that return ProblemModifier and TypeMethodDescriptionfinal Problem<Permutation>NearestCityHeuristic.getProblem()final Problem<Permutation>NearestCityPairHeuristic.getProblem() -
Uses of Problem in org.cicirello.search.restarts
Methods in org.cicirello.search.restarts that return Problem -
Uses of Problem in org.cicirello.search.sa
Methods in org.cicirello.search.sa that return Problem -
Uses of Problem in org.cicirello.search.ss
Methods in org.cicirello.search.ss that return ProblemModifier and TypeMethodDescriptionConstructiveHeuristic.getProblem()Gets a reference to the instance of the optimization problem that is the subject of this heuristic.HeuristicSolutionGenerator.getProblem()HybridConstructiveHeuristic.getProblem()