problem.loadmodelcuts
| problem.loadmodelcuts | 
  Purpose
 
  Specifies that a set of rows in the problem will be treated as model cuts.
 
  Synopsis
 
 problem.loadmodelcuts (mrows) 
 
  Argument
 
| 
     mrows 
     | 
     An array of row indices to be treated as cuts.
     | 
  Example
 
 This sets the first six matrix rows as model cuts in the global problem
  myprob.
 
p.loadmodelcuts ([0,1,2,3,4,5])
p.mipoptimize ("")
  Further information
 
 1. During presolve the model cuts are removed from the problem and added to an internal cut pool. During the global search, the Optimizer will regularly check this cut pool for any violated model cuts and add those that cuts off a node LP solution.
 
 2. The model cuts must be "true" model cuts, in the sense that they are redundant at the optimal MIP solution. The Optimizer does not guarantee to add all violated model cuts, so they must not be required to define the optimal MIP solution.
 
 
