|  | Dual | 
Note: This API is now obsolete.
 Inheritance Hierarchy
Inheritance Hierarchy Syntax
SyntaxThe DualSimplexSolverParams type exposes the following members.
 Constructors
Constructors| Name | Description | |
|---|---|---|
|  | DualSimplexSolverParams | Constructs a DualSimplexSolverParams object with default values: Costing - Steepest Edge, MaxPivotCount - no limit, Minimize - false. | 
|  | DualSimplexSolverParams(DualSimplexCosting) | Constructs a DualSimplexSolverParams object with the given costing option and default values for the other parameters: MaxPivotCount - no limit, Minimize - false. | 
|  | DualSimplexSolverParams(Int32) | Constructs a DualSimplexSolverParams with the given maximum pivot count. The solver will stop and the result will be SolverInterrupted if this maximum is met. The rest of the solver parameters will have their default values: Costing - Steepest Edge, Minimize - false. | 
|  | DualSimplexSolverParams(Int32, DualSimplexCosting) | Constructs a DualSimplexSolverParams with the given maximum pivot count and costing option. The solver will stop and the result will be SolverInterrupted if this maximum is met. The rest of the solver parameters will have their default values: Minimize - false. | 
 Properties
Properties| Name | Description | |
|---|---|---|
|  | Costing | Gests and sets the costing (privoting) parameter. | 
|  | MaxPivotCount | Gets and sets the maximum number of pivots the simplex algorithm will
            perform before stopping. If this maximum is met the solver will stop 
            and the result will be SolverInterrupted (Inherited from SimplexSolverParamsBase) | 
|  | Minimize | Set Minimize to true if you want the objective function
            minimized, set to false to maximize the objective function. (Inherited from SimplexSolverParamsBase) | 
 See Also
See Also