public static interface IloCplex.MIPCallback.NodeData
When you attach a user-object to a node by means of the argument
data of the method makeBranch,
you can ask CPLEX to notify your application when the node is deleted.
To do so, you must implement the
NodeData interface for the node data
objects passed to CPLEX. CPLEX will then call the method
delete for this object.
| Modifier and Type | Method and Description |
|---|---|
void |
delete()
Method called by CPLEX when a node is deleted.
|