Uses of Interface
extended.SimulatedAnnealingProblem

Packages that use SimulatedAnnealingProblem
extended contains more advanced search algorithms and the corresponding problem interfaces 
 

Uses of SimulatedAnnealingProblem in extended
 

Fields in extended declared as SimulatedAnnealingProblem
protected  SimulatedAnnealingProblem<T> SimulatedAnnealing.problem
          holds a reference to the problem to be solved
 

Methods in extended that return SimulatedAnnealingProblem
 SimulatedAnnealingProblem<T> SimulatedAnnealing.getProblem()
          This method returns the problem, with which this search has been created.
 

Constructors in extended with parameters of type SimulatedAnnealingProblem
SimulatedAnnealing(SimulatedAnnealingProblem<T> problem)
          Creates a new simulated annealing search with the given problem.
SimulatedAnnealing(SimulatedAnnealingProblem<T> problem, boolean minimum)
          Creates a new simulated annealing search, with the given problem and the direction given by the minimum flag.
SimulatedAnnealing(SimulatedAnnealingProblem<T> problem, boolean minimum, double temperature, double factor)
          Creates a new simulated annealing search, with the given problem, the direction given by the minimum flag, the initial temperature and the cooling factor.
SimulatedAnnealing(SimulatedAnnealingProblem<T> problem, boolean minimum, double temperature, double factor, int maxSame)
          Creates a new simulated annealing search, with the given problem, the direction given by the minimum flag, the initial temperature, the cooling factor and the maximal number of steps without improvements.
SimulatedAnnealing(SimulatedAnnealingProblem<T> problem, double temperature, double factor)
          Creates a new simulated annealing search, with the given problem, the initial temperature and the cooling factor.