Pruning by Bound
Use the relationship between a node's relaxation bound and the current incumbent value to decide which open nodes in a branch-and-bound tree can be discarded without further branching. Covers both the maximization rule () and the minimization rule (), sweeping over an open list, and re-pruning after incumbent updates.
Tutorial
Pruning by Bound (Maximization)
In a branch-and-bound tree, each open node is a subproblem whose relaxation (typically the LP relaxation) yields a bound on the objective values reachable in that subtree. The incumbent is the best feasible integer solution found so far; we denote its objective by .
For a maximization integer program, the relaxation produces an upper bound on every integer-feasible point inside the node's subtree. If
then no descendant of this node can strictly improve on the incumbent. We prune the node by bound and discard the entire subtree without further branching.
For instance, suppose the incumbent is and a node has . Since , every integer point in this subtree has objective at most , which is worse than . Prune.