Enum CoefficientReductionStrategy
The coefficient reduction strategy.
Namespace: OPTANO.Modeling.Optimization.Solver.Cplex
Assembly: Optimization.Solver.Cplex.dll
Syntax
public enum CoefficientReductionStrategy
Fields
Name | Description |
---|---|
Aggressive | The value 2, applies coefficient reduction somewhat more aggressively, reducing all coefficients that can be reduced. |
AggressiveWithTilting | The value 3, the most aggressive setting of this parameter, applies a technique known as tilting. Tilting can cut off additional fractional solutions in some models. Cutting off these fractional solutions potentially yields more progress in both the best node and best integer solution in those particular models. |
Automatic | Let Cplex decide. Default. |
Disabled | Turns off coefficient reduction during preprocessing. |
OnlyToIntegral | The value 1 (one) applies limited coefficient reduction to achieve only integral coefficients. |