This is the callback class to use to control the progress of the generation of flow cover and mixed integer rounding (MIR) cuts when a mixed integer programming problem (MIP) is being solved.

Namespace: ILOG.CPLEX
Assembly: ILOG.CPLEX (in ILOG.CPLEX.dll) Version: 22.1.1.0

Syntax

C#
public abstract class FlowMIRCutCallback : Cplex..::..MIPCallback
Visual Basic
Public MustInherit Class FlowMIRCutCallback _
	Inherits Cplex..::..MIPCallback

Remarks

An instance of the class FlowMIRCutCallback represents a user-written control or query callback in an application that uses an instance of Cplex to solve a mixed integer programming problem (a MIP). This class offers a method to control the progress of the generation of flow cover and mixed integer rounding (MIR) cuts.

The constructor and methods of this class are protected to make sure that they are used only to derive a user-written callback class or to implement the main method in it. This is the callback class to use when Cplex is solving a MIP and you intend to intervene in the search.

Inheritance Hierarchy

System..::..Object
  ILOG.CPLEX..::..Cplex..::..Callback
    ILOG.CPLEX..::..Cplex..::..OptimizationCallback
      ILOG.CPLEX..::..Cplex..::..MIPInfoCallback
        ILOG.CPLEX..::..Cplex..::..MIPCallback
          ILOG.CPLEX..::..Cplex..::..FlowMIRCutCallback

See Also