Enum SolverBenchmarkBluePrintType

java.lang.Object
java.lang.Enum<SolverBenchmarkBluePrintType>
org.optaplanner.benchmark.config.blueprint.SolverBenchmarkBluePrintType
All Implemented Interfaces:
Serializable, Comparable<SolverBenchmarkBluePrintType>

public enum SolverBenchmarkBluePrintType extends Enum<SolverBenchmarkBluePrintType>
  • Enum Constant Details

    • EVERY_CONSTRUCTION_HEURISTIC_TYPE

      public static final SolverBenchmarkBluePrintType EVERY_CONSTRUCTION_HEURISTIC_TYPE
      Run every ConstructionHeuristicType.
    • EVERY_LOCAL_SEARCH_TYPE

      public static final SolverBenchmarkBluePrintType EVERY_LOCAL_SEARCH_TYPE
      Run the default ConstructionHeuristicType with every LocalSearchType.
    • EVERY_CONSTRUCTION_HEURISTIC_TYPE_WITH_EVERY_LOCAL_SEARCH_TYPE

      public static final SolverBenchmarkBluePrintType EVERY_CONSTRUCTION_HEURISTIC_TYPE_WITH_EVERY_LOCAL_SEARCH_TYPE
      Run every ConstructionHeuristicType with every LocalSearchType.
  • Method Details

    • values

      public static SolverBenchmarkBluePrintType[] 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

      public static SolverBenchmarkBluePrintType valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • buildSolverBenchmarkConfigList

      protected List<SolverBenchmarkConfig> buildSolverBenchmarkConfigList()
    • buildSolverBenchmarkConfig

      protected SolverBenchmarkConfig buildSolverBenchmarkConfig(org.optaplanner.core.config.constructionheuristic.ConstructionHeuristicType constructionHeuristicType, boolean localSearchEnabled, org.optaplanner.core.config.localsearch.LocalSearchType localSearchType)