Enum MipPresolves
Type of integer processing to be performed.
Namespace: OPTANO.Modeling.Optimization.Solver.FicoXpress804.ConfigurationEnums
Assembly: Optimization.Solver.FicoXpress804.dll
Syntax
[Flags]
public enum MipPresolves
Fields
Name | Description |
---|---|
All | Enable all options. |
AllowContinuousBoundChanges | If node preprocessing is allowed to change bounds on continuous columns. |
DualReductions | Dual reductions will be performed at each node. |
None | No preprocessing during Branch & Bound. |
PrimalReductions | Primal reductions will be performed at each node. Uses constraints of the node to tighten the range of variables, often resulting in fixing their values. This greatly simplifies the problem and may even determine optimality or infeasibility of the node before the simplex method commences. |
ReducedCostFixings | Reduced cost fixing will be performed at each node. This can simplify the node before it is solved, by deducing that certain variables' values can be fixed based on additional bounds imposed on other variables at this node. |