Interface for user-objects attached to nodes.

Namespace: ILOG.CPLEX
Assembly: ILOG.CPLEX (in ILOG.CPLEX.dll) Version: 22.1.1.0

Syntax

C#
public interface NodeData
Visual Basic
Public Interface NodeData

Remarks

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.

See Also