Package org.tweetyproject.math.examples
Class KnapSack
- java.lang.Object
-
- java.util.AbstractCollection<E>
-
- java.util.AbstractSet<E>
-
- java.util.HashSet<OptProbElement>
-
- org.tweetyproject.math.opt.problem.GeneralConstraintSatisfactionProblem
-
- org.tweetyproject.math.opt.problem.CombinatoricsProblem
-
- org.tweetyproject.math.examples.KnapSack
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Cloneable,java.lang.Iterable<OptProbElement>,java.util.Collection<OptProbElement>,java.util.Set<OptProbElement>
public class KnapSack extends CombinatoricsProblem
This class implements a KnapSack problem- Author:
- Sebastian Franke
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.tweetyproject.math.opt.problem.CombinatoricsProblem
elements, MAXIMIZE, MINIMIZE
-
-
Constructor Summary
Constructors Constructor Description KnapSack(java.util.ArrayList<ElementOfCombinatoricsProb> elements, Term maxWeight)
-
Method Summary
Modifier and Type Method Description java.util.ArrayList<ElementOfCombinatoricsProb>createRandomNewSolution(java.util.ArrayList<ElementOfCombinatoricsProb> currSol)create a solution that changes the solution currSol a little bit (i.e.: for TSP: swap 2 cities; for KnapSack: add a random element) for currSol == null: create a random solutiondoubleevaluate(java.util.ArrayList<ElementOfCombinatoricsProb> sol)evaluates the solutionjava.lang.DoublegetHeuristicValue(ElementOfCombinatoricsProb solutionComponent, java.lang.Integer getCurrentIndex, ElementOfCombinatoricsProb initialReference, ElementOfCombinatoricsProb[] sol)since this class is not used with ant optimization, we do not need this methoddouble[][]getRepresentation()since this class is not used with ant optimization, we do not need this methodbooleanisValid(java.util.ArrayList<ElementOfCombinatoricsProb> sol)checks if a given solution is valid under all constraintsdoublesumOfValues(java.util.ArrayList<ElementOfCombinatoricsProb> sol)doublesumOfWeights(java.util.ArrayList<ElementOfCombinatoricsProb> sol)-
Methods inherited from class org.tweetyproject.math.opt.problem.CombinatoricsProblem
createDifference, formNeighborhood, getGraphrepresentation
-
Methods inherited from class java.util.HashSet
add, clear, clone, contains, isEmpty, iterator, remove, size, spliterator
-
-
-
-
Constructor Detail
-
KnapSack
public KnapSack(java.util.ArrayList<ElementOfCombinatoricsProb> elements, Term maxWeight)
-
-
Method Detail
-
sumOfWeights
public double sumOfWeights(java.util.ArrayList<ElementOfCombinatoricsProb> sol)
- Specified by:
sumOfWeightsin classCombinatoricsProblem- Parameters:
sol- is the solution to be viewd- Returns:
- if the solution sol is valid under the constraints of the problem
-
sumOfValues
public double sumOfValues(java.util.ArrayList<ElementOfCombinatoricsProb> sol)
-
createRandomNewSolution
public java.util.ArrayList<ElementOfCombinatoricsProb> createRandomNewSolution(java.util.ArrayList<ElementOfCombinatoricsProb> currSol)
Description copied from class:CombinatoricsProblemcreate a solution that changes the solution currSol a little bit (i.e.: for TSP: swap 2 cities; for KnapSack: add a random element) for currSol == null: create a random solution- Specified by:
createRandomNewSolutionin classCombinatoricsProblem- Parameters:
currSol- the current solution- Returns:
- the solution
-
isValid
public boolean isValid(java.util.ArrayList<ElementOfCombinatoricsProb> sol)
Description copied from class:CombinatoricsProblemchecks if a given solution is valid under all constraints- Specified by:
isValidin classCombinatoricsProblem- Parameters:
sol- some solution- Returns:
- true iff the solution is valid
-
evaluate
public double evaluate(java.util.ArrayList<ElementOfCombinatoricsProb> sol)
Description copied from class:CombinatoricsProblemevaluates the solution- Specified by:
evaluatein classCombinatoricsProblem- Parameters:
sol- some solution- Returns:
- the target function for sol
-
getHeuristicValue
public java.lang.Double getHeuristicValue(ElementOfCombinatoricsProb solutionComponent, java.lang.Integer getCurrentIndex, ElementOfCombinatoricsProb initialReference, ElementOfCombinatoricsProb[] sol)
since this class is not used with ant optimization, we do not need this method- Specified by:
getHeuristicValuein classCombinatoricsProblem- Parameters:
solutionComponent- : Element to be checked *getCurrentIndex- : the length of the solutioninitialReference- : default starting point for the solution (the first Element in the solution)sol- : array representation of a solution (needed for Ant optimization)- Returns:
- the heuristic value
-
getRepresentation
public double[][] getRepresentation()
since this class is not used with ant optimization, we do not need this method- Specified by:
getRepresentationin classCombinatoricsProblem
-
-