ilog.cplex
Class IloCplex.PrimalSimplexCallback

java.lang.Object
  |
  +--ilog.cplex.IloCplex.Callback
        |
        +--ilog.cplex.IloCplex.LPCallback
              |
              +--ilog.cplex.IloCplex.PrimalSimplexCallback

public abstract static class IloCplex.PrimalSimplexCallback
extends IloCplex.LPCallback

The callback class to use when IloCplex uses the primal simplex optimizer. This class represents a user-written callback in an application that uses an instance of IloCplex to solve a problem by means of the primal simplex optimizer. For more information about the primal simplex optimizer, see the ILOG CPLEX User’s Manual. IloCplex calls the user-written callback after each iteration during the optimization.

The constructor and methods of this class are for use in deriving a user-written callback class and in implementing the main method in it.

For more information about the primal simplex optimizer, see the ILOG CPLEX User’s Manual.

See Also:
IloCplex.LPCallback

Constructor Summary
protected IloCplex.PrimalSimplexCallback()
          User-written primal simplex callback class constructor.
 
Methods inherited from class ilog.cplex.IloCplex.LPCallback
getDualInfeasibility, getInfeasibility, getNiterations, getObjValue, isDualFeasible, isFeasible
 
Methods inherited from class ilog.cplex.IloCplex.Callback
abort, main
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

IloCplex.PrimalSimplexCallback

protected IloCplex.PrimalSimplexCallback()
User-written primal simplex callback class constructor. This constructor can be called only for constructing objects of derived user-written callback classes, but not to construct IloCplex.LPCallback objects directly.