Parameters control the way each class of cuts is used. Those parameters are listed in Table 5.4.
Set the cuts-factor parameter in the:
set mip limits cutsfactor
.
IloCplex::setParam(CutsFactor,
n).
CPXsetdblparam(env,
CPX_PARAM_CUTSFACTOR,
n).
set mip limits aggforcut
.
IloCplex::setParam(AggCutLim,
i).
CPXsetintparam(env, CPX_PARAM_AGGCUTLIM,
i)
.
set mip limits gomorypass
.
IloCplex::setParam(FracPass,
i)
.
CPXsetintparam(env, CPX_PARAM_FRACPASS,
i)
.
The parameter will not have any effect if the parameter for set mip cuts gomory
has a nonzero value. The gomorycand parameter controls the number of variable candidates to be considered for generating Gomory fractional cuts. Set this parameter in the:
set mip limits gomorycand
.
IloCplex::setParam(FracCand,
i)
.
CPXsetintparam(env, CPX_PARAM_FRACCAND,
i)
.