|   | 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.
             |