ilog.cplex
Class IloCplex.FractionalCutCallback

java.lang.Object
  |
  +--ilog.cplex.IloCplex.Callback
        |
        +--ilog.cplex.IloCplex.MIPCallback
              |
              +--ilog.cplex.IloCplex.FractionalCutCallback

public abstract static class IloCplex.FractionalCutCallback
extends IloCplex.MIPCallback

A callback class to use when IloCplex is solving a MIP. An instance of the this class represents a user-written callback in an application that uses an instance of IloCplex to solve a mixed integer programming problem (a MIP). This class offers a method to check on the progress of the cuts.

The constructor and methods of this class are protected for use in deriving a user-written callback class, and in implementing the main method in it. If an attempt is made to access information not available to an instance of this class, an exception is thrown.

See Also:
IloCplex.MIPCallback

Constructor Summary
protected IloCplex.FractionalCutCallback()
          Constructs a user-written callback class with a method of checking on the progress of cuts, when solving a MIP.
 
Method Summary
protected  double getProgress()
          Returns the fraction of the disjunctive cut generation for the pass completed.
 
Methods inherited from class ilog.cplex.IloCplex.MIPCallback
getBestObjValue, getCutoff, getDirection, getIncumbentObjValue, getIncumbentValue, getIncumbentValues, getIncumbentValues, getNcliques, getNcovers, getNdisjunctiveCuts, getNflowCovers, getNflowPaths, getNfractionalCuts, getNGUBcovers, getNimpliedBounds, getNiterations, getNMIRs, getNnodes, getNremainingNodes, getPriority, isIntegerFeasible
 
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.FractionalCutCallback

protected IloCplex.FractionalCutCallback()
Constructs a user-written callback class with a method of checking on the progress of cuts, when solving a MIP.
Method Detail

getProgress

protected double getProgress()
Returns the fraction of the disjunctive cut generation for the pass completed.
Returns:
The fraction of the disjunctive cut generation for the pass completed.