Uses of Class
extended.HillClimbing.EStrategy

Packages that use HillClimbing.EStrategy
extended contains more advanced search algorithms and the corresponding problem interfaces 
 

Uses of HillClimbing.EStrategy in extended
 

Methods in extended that return HillClimbing.EStrategy
static HillClimbing.EStrategy HillClimbing.EStrategy.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static HillClimbing.EStrategy[] HillClimbing.EStrategy.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in extended with parameters of type HillClimbing.EStrategy
 void HillClimbing.setStrategy(HillClimbing.EStrategy strategy)
          This method replaces the used strategy by the selected default strategy.
 

Constructors in extended with parameters of type HillClimbing.EStrategy
HillClimbing(HillClimbingProblem<T> problem, boolean minimum, HillClimbing.EStrategy strategy)
          Creates a new hill climbing search, with the given problem and the direction given by the minimum flag.
HillClimbing(HillClimbingProblem<T> problem, boolean minimum, HillClimbing.EStrategy strategy, int sideSteps)
          Creates a new hill climbing search, with the given problem, the direction given by the minimum flag and the allowed number of sideSteps.
HillClimbing(HillClimbingProblem<T> problem, HillClimbing.EStrategy strategy)
          Creates a new hill climbing search, with the given problem and the selected strategy.