public enum PivotSelectionRule extends Enum<PivotSelectionRule> implements OptimizationData
| Enum Constant and Description | 
|---|
| BLANDThe first variable with a negative coefficient in the objective function
 row will be chosen as entering variable. | 
| DANTZIGThe classical rule, the variable with the most negative coefficient
 in the objective function row will be chosen as entering variable. | 
| Modifier and Type | Method and 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 © 2003–2016 The Apache Software Foundation. All rights reserved.