Namespace: ILOG.OPL
Assembly: oplall (in oplall.dll)

Syntax

C#
public abstract class ContinuousCallback : Cplex..::..Callback

Remarks

The callback base class for user-written continuous callbacks.

Continuous callbacks are executed at every iteration of the simplex algorithm or the barrier algorithm during the solution of a continuous model. Algorithm-specific callbacks are also available via the extensions Cplex.SimplexCallback and Cplex.BarrierCallback. Note that by setting a continuous callback with the method Cplex.use, you set the same callback for both the simplex and the barrier callback, thus potentially overriding other callbacks of these types previously installed.

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.

Inheritance Hierarchy

System..::..Object
  ILOG.OPL..::..Cplex..::..Callback
    ILOG.OPL..::..Cplex..::..ContinuousCallback
      ILOG.OPL..::..Cplex..::..BarrierCallback
      ILOG.OPL..::..Cplex..::..SimplexCallback

See Also