Uses of Class
extended.HillClimbing

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

Uses of HillClimbing in extended
 

Methods in extended with parameters of type HillClimbing
 T HillClimbingStrategy.select(HillClimbing<T> hillclimbing, java.util.List<T> extension, T current)
          This method selects the best state from the given list of successors according to the current state and a comparator.
 T FirstChoiceStrategy.select(HillClimbing<T> hc, java.util.List<T> list, T current)
          This method selects the first state in the extension list which is better then the current state.
 T BestChoiceStrategy.select(HillClimbing<T> hc, java.util.List<T> list, T current)
          This method selects the best state of all states in the extension list.