Pruning by Integrality
In branch-and-bound for integer programming, a node is pruned by integrality when its LP relaxation optimum is already integer-valued. The node yields a feasible IP solution that may update the incumbent, after which no further branching is needed. This lesson covers recognizing the rule, updating the incumbent, and combining integrality with the previously-learned pruning rules (infeasibility and bound).
Tutorial
Pruning by Integrality
In branch-and-bound for an integer program, every node solves an LP relaxation. Sometimes the LP optimum turns out to be integer-valued in every variable — in which case it is automatically feasible for the original integer program.
A node is pruned by integrality when its optimal LP solution is integer-valued in every component required to be integer. No further branching is needed at this node.
For example, suppose a node's LP relaxation gives the optimal solution
Every component is an integer, so is a feasible IP solution. The node is pruned by integrality.
By contrast, the LP solution has a fractional component, so the corresponding node cannot be pruned by integrality and we must branch.