Originally posted by: SystemAdmin
Since the parameters are not explicitly supported in the Python API there is no easy way to do this. You could try to use an undocumented function like this:
cplex._internal._procedural.setintparam(c._env._e, PARAM_NUM, value)
where
c is the instance of cplex.Cplex() for which the parameter will be changed.
PARAM_NUM is the parameter number (5001 for "Network simplex iteration limit") and
value is the new value to be set.
#CPLEXOptimizers#DecisionOptimization