![]() | PrimalSimplexSolverParams Class |
Note: This API is now obsolete.
Namespace: CenterSpace.NMath.Core
The PrimalSimplexSolverParams type exposes the following members.
Name | Description | |
---|---|---|
![]() | PrimalSimplexSolverParams |
Constructs a PrimalSimplexSolverParams object with default
values:
Costing - Steepest Edge,
MaxPivotCount - no limit,
Minimize - false.
|
![]() | PrimalSimplexSolverParams(Int32) |
Constructs a PrimalSimplexSolverParams 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.
|
![]() | PrimalSimplexSolverParams(PrimalSimplexCosting) |
Constructs a PrimalSimplexSolverParams object with the
given costing option and default values for the other parameters:
MaxPivotCount - no limit,
Minimize - false.
|
![]() | PrimalSimplexSolverParams(Int32, PrimalSimplexCosting) |
Constructs a PrimalSimplexSolverParams 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.
|
Name | Description | |
---|---|---|
![]() | Costing |
Gests and sets the costing (pivoting) 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.) |