java.lang.Object
org.cicirello.search.problems.Porcupine
- All Implemented Interfaces:
IntegerCostOptimizationProblem<BitVector>,Problem<BitVector>
This class implements the Porcupine landscape (Ackley, 1985), which is a very rugged search
landscape, with an exponential number of local optima. The Porcupine problem is a maximization
problem to maximize the function: f(x) = 10 * CountOfOneBits(x) - 15 * (CountOfZeroBits(x) mod
2), where x is a vector of bits of length n. The global optimal solution is when x is all ones,
which has a maximal value of 10*n.
The value method implements the original maximization version of the Porcupine
problem, as described above. The algorithms of the Chips-n-Salsa library are defined for
minimization, requiring a cost function. The cost method implements the equivalent
as the following minimization problem: minimize cost(x) = 10*n - f(x). The global optima is still
all 1-bits, which has a cost equal to 0.
The Porcupine problem was introduced by David Ackley in the following paper:
David H. Ackley. A connectionist algorithm for genetic search. Proceedings of the First
International Conference on Genetic Algorithms and Their Applications, pages 121-135, July 1985.
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a Porcupine object for use in evaluating candidate solutions to the Porcupine problem. -
Method Summary
Modifier and TypeMethodDescriptionintComputes the cost of a candidate solution to the problem instance.booleanisMinCost(int cost) Checks if a given cost value is equal to the minimum theoretical cost across all possible solutions to the problem instance, where lower cost implies better solution.intminCost()A lower bound on the minimum theoretical cost across all possible solutions to the problem instance, where lower cost implies better solution.intComputes the value of the candidate solution within the usual constraints and interpretation of the problem.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.cicirello.search.problems.IntegerCostOptimizationProblem
costAsDouble, getSolutionCostPair
-
Constructor Details
-
Porcupine
public Porcupine()Constructs a Porcupine object for use in evaluating candidate solutions to the Porcupine problem.
-
-
Method Details
-
cost
Description copied from interface:IntegerCostOptimizationProblemComputes the cost of a candidate solution to the problem instance. The lower the cost, the more optimal the candidate solution.- Specified by:
costin interfaceIntegerCostOptimizationProblem<BitVector>- Parameters:
candidate- The candidate solution to evaluate.- Returns:
- The cost of the candidate solution. Lower cost means better solution.
-
minCost
public int minCost()Description copied from interface:IntegerCostOptimizationProblemA lower bound on the minimum theoretical cost across all possible solutions to the problem instance, where lower cost implies better solution. The default implementation returns Integer.MIN_VALUE.- Specified by:
minCostin interfaceIntegerCostOptimizationProblem<BitVector>- Returns:
- A lower bound on the minimum theoretical cost of the problem instance.
-
value
Description copied from interface:IntegerCostOptimizationProblemComputes the value of the candidate solution within the usual constraints and interpretation of the problem.- Specified by:
valuein interfaceIntegerCostOptimizationProblem<BitVector>- Parameters:
candidate- The candidate solution to evaluate.- Returns:
- The actual optimization value of the candidate solution.
-
isMinCost
public boolean isMinCost(int cost) Description copied from interface:IntegerCostOptimizationProblemChecks if a given cost value is equal to the minimum theoretical cost across all possible solutions to the problem instance, where lower cost implies better solution.- Specified by:
isMinCostin interfaceIntegerCostOptimizationProblem<BitVector>- Parameters:
cost- The cost to check.- Returns:
- true if cost is equal to the minimum theoretical cost,
-