Expand description
Branch-and-Bound algorithm for Mixed-Integer Programming
The branch-and-bound algorithm systematically explores the space of integer solutions by:
- Solving LP relaxations at each node
- Branching on a fractional integer variable
- Using bounds to prune subproblems that cannot improve on the incumbent
§Algorithm
- Start with the LP relaxation of the full problem
- Maintain an incumbent (best integer solution found)
- Branch by adding floor/ceil constraints on a fractional variable
- Prune nodes where LP lower bound >= incumbent objective
§References
- Land, A.H. & Doig, A.G. (1960). “An automatic method of solving discrete programming problems.” Econometrica, 28(3), 497-520.
Structs§
- Branch
AndBound Options - Options for branch-and-bound
- Branch
AndBound Solver - Branch-and-bound solver for mixed-integer programming
Enums§
- Node
Selection - Node selection strategy for branch-and-bound
- Variable
Selection - Variable selection strategy for branching