Originally posted by: raswalgul
I'm using callbacks to try to get information on the partial solution at a particular node in the branch and bound tree. By partial solution, I mean the incomplete solution formed by the branches created at all the ancestors of the given node. But I'm unable to directly retrieve a partial solution at a node.
One way to do this if I maintain a datastructure that stores which variable is branched on at what node_id. To do this, one must know the sequence of node_ids that would constitute a path in the tree. OR, one must at least be able to retrieve the node_id of the parent node of the given node. But I can't retrieve this information either.
Can any one help me with this?
#CPLEXOptimizers#DecisionOptimization