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
Supported search algorithms.
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionTraditional monotonic binary search on feasibility.Golden-section scoring search suitable for non-monotonic responses.Nelder–Mead simplex search on the composite score.Particle-swarm search on the composite/feasibility score. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static ProductionOptimizer.SearchMode[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BINARY_FEASIBILITY
Traditional monotonic binary search on feasibility. -
GOLDEN_SECTION_SCORE
Golden-section scoring search suitable for non-monotonic responses. -
NELDER_MEAD_SCORE
Nelder–Mead simplex search on the composite score. -
PARTICLE_SWARM_SCORE
Particle-swarm search on the composite/feasibility score.
-
-
Constructor Details
-
SearchMode
private SearchMode()
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-