Serializable
, Comparable<PivotSelectionRule>
, OptimizationData
public enum PivotSelectionRule extends Enum<PivotSelectionRule> implements OptimizationData
Enum Constant | Description |
---|---|
BLAND |
The first variable with a negative coefficient in the objective function
row will be chosen as entering variable.
|
DANTZIG |
The classical rule, the variable with the most negative coefficient
in the objective function row will be chosen as entering variable.
|
Modifier and Type | Method | Description |
---|---|---|
static PivotSelectionRule |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static PivotSelectionRule[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PivotSelectionRule DANTZIG
public static final PivotSelectionRule BLAND
public static PivotSelectionRule[] values()
for (PivotSelectionRule c : PivotSelectionRule.values()) System.out.println(c);
public static PivotSelectionRule valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2016–2018 Hipparchus.org. All rights reserved.