Skip to content
Discussion options

You must be logged in to vote

Hi @cwfparsonson ,

Here is my understanding of the B&B process and the counting of nodes in SCIP (see also this discussion in SCIP's mailing list).

During the solving process, at any point in time the B&B tree consists of:

  • processed nodes: nodes which have already been selected by node selection and processed. This includes the currently selected node (the focus node) as well.
  • open nodes: nodes which have been created by branching and are yet to be processed.

Processed nodes

Processed really means that a node has already been selected by the node selection strategy. This includes previously processed nodes, and also the currently focused node (see SCIPgetNNodes()). Assuming SCIP does no…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@cwfparsonson
Comment options

Answer selected by cwfparsonson
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants