Class SimulatedAnnealingOnConstrProb
java.lang.Object
org.tweetyproject.math.opt.solver.Solver
org.tweetyproject.math.opt.solver.SimulatedAnnealingOnConstrProb
implements the Simulated Annealing algorithm
for optimization problems
- Author:
- Sebastian Franke
-
Constructor Summary
ConstructorDescriptionSimulatedAnnealingOnConstrProb
(double startTemp, double decreasePerIt, int maxStepsWithNoImprove) Constructor -
Method Summary
Modifier and TypeMethodDescriptionchooseANeighbor
(Map<Variable, Term> currSol, int minIterations, int maxIterations, double threshold, Term targetFunc) Computes a solution to the given constraint satisfaction or optimization problem, i.e.Methods inherited from class org.tweetyproject.math.opt.solver.Solver
getDefaultGeneralSolver, getDefaultIntegerLinearSolver, getDefaultLinearSolver, hasDefaultGeneralSolver, hasDefaultIntegerLinearSolver, hasDefaultLinearSolver, isInstalled, setDefaultGeneralSolver, setDefaultIntegerLinearSolver, setDefaultLinearSolver
-
Constructor Details
-
SimulatedAnnealingOnConstrProb
public SimulatedAnnealingOnConstrProb(double startTemp, double decreasePerIt, int maxStepsWithNoImprove) Constructor- Parameters:
startTemp
- startTempdecreasePerIt
- decreasePerItmaxStepsWithNoImprove
- maxStepsWithNoImprove
-
-
Method Details
-
chooseANeighbor
public Map<Variable,Term> chooseANeighbor(Map<Variable, Term> currSol, int minIterations, int maxIterations, double threshold, Term targetFunc) - Parameters:
currSol
- : the solution that every newly created solution uses as a initial solution in createNewSolminIterations
- : the minimum amount of solutions to be createdmaxIterations
- : the maximum amount of solutions to be createdthreshold
- : if a solution with the quality of threshold is reached we do maximum 10 more triestargetFunc
- the target function- Returns:
- the best solution that was found and is a mutant of currSol
-
solve
Description copied from class:Solver
Computes a solution to the given constraint satisfaction or optimization problem, i.e. a mapping from variables of the problem to terms.
-