Enum StepCountingHillClimbingType
java.lang.Object
java.lang.Enum<StepCountingHillClimbingType>
org.optaplanner.core.config.localsearch.decider.acceptor.stepcountinghillclimbing.StepCountingHillClimbingType
- All Implemented Interfaces:
Serializable
,Comparable<StepCountingHillClimbingType>
Determines what increment the counter of Step Counting Hill Climbing.
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic StepCountingHillClimbingType
Returns the enum constant of this type with the specified name.static StepCountingHillClimbingType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
SELECTED_MOVE
Every selected move is counted. -
ACCEPTED_MOVE
Every accepted move is counted.Note: If
LocalSearchForagerConfig.getAcceptedCountLimit()
= 1, then this behaves exactly the same as {link #STEP}. -
STEP
Every step is counted. Every step was always an accepted move. This is the default. -
EQUAL_OR_IMPROVING_STEP
Every step that equals or improves theScore
of the last step is counted. -
IMPROVING_STEP
Every step that improves theScore
of the last step is counted.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-