 | DualSimplexSolverParams(Int32, DualSimplexCosting) Constructor |
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.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic DualSimplexSolverParams(
int maxPivotCount,
DualSimplexCosting costing
)
Public Sub New (
maxPivotCount As Integer,
costing As DualSimplexCosting
)
public:
DualSimplexSolverParams(
int maxPivotCount,
DualSimplexCosting costing
)
new :
maxPivotCount : int *
costing : DualSimplexCosting -> DualSimplexSolverParams
Parameters
- maxPivotCount Int32
- Maximum number of pivots.
- costing DualSimplexCosting
- Set costing (pivoting) parameter.
See Also