This is the callback class to use when Cplex uses the simplex optimizer.

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

Syntax

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

Remarks

An instance of this class represents a user-written callback in an application that uses an instance of Cplex to solve a problem by means of the (primal or dual) simplex optimizer. For more information on the simplex optimizers, see the IBM ILOG Cplex User's Manual.

Cplex calls the user-written callback at the end of each simplex iteration.

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..::..SimplexCallback

See Also