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. |