Enum Class ProductionOptimizer.SearchMode

java.lang.Object
java.lang.Enum<ProductionOptimizer.SearchMode>
neqsim.process.util.optimization.ProductionOptimizer.SearchMode
All Implemented Interfaces:
Serializable, Comparable<ProductionOptimizer.SearchMode>, Constable
Enclosing class:
ProductionOptimizer

public static enum ProductionOptimizer.SearchMode extends Enum<ProductionOptimizer.SearchMode>
Supported search algorithms.
  • Enum Constant Details

    • BINARY_FEASIBILITY

      public static final ProductionOptimizer.SearchMode BINARY_FEASIBILITY
      Traditional monotonic binary search on feasibility.
    • GOLDEN_SECTION_SCORE

      public static final ProductionOptimizer.SearchMode GOLDEN_SECTION_SCORE
      Golden-section scoring search suitable for non-monotonic responses.
    • NELDER_MEAD_SCORE

      public static final ProductionOptimizer.SearchMode NELDER_MEAD_SCORE
      Nelder–Mead simplex search on the composite score.
    • PARTICLE_SWARM_SCORE

      public static final ProductionOptimizer.SearchMode PARTICLE_SWARM_SCORE
      Particle-swarm search on the composite/feasibility score.
  • Constructor Details

    • SearchMode

      private SearchMode()
  • Method Details

    • values

      public static ProductionOptimizer.SearchMode[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static ProductionOptimizer.SearchMode valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null