A Markov Decision Process for Variable Selection in Branch & Bound
Paul Strang, Zacharie Alès, Côme Bissuel, Olivier Juan, Safia Kedad-Sidhoum, Emmanuel Rachelson
TL;DR
This work reframes variable selection in Branch & Bound MILP as a proper Markov decision process by introducing BBMDP, a vanilla MDP that preserves temporality and allows standard dynamic programming and RL methods. It contrasts BBMDP with prior TreeMDP formulations, demonstrating that TreeMDP can misalign with MDP principles and multi-step learning, while BBMDP supports $k$-step TD, TD($\lambda$), and MCTS. The authors propose an approximate dynamic programming approach that learns $\bar{Q}^*$ via a neural network using $k$-step updates and HL-Gauss loss, and they show that a DQN-BBMDP agent achieves state-of-the-art performance among RL methods on four Ecole MILP benchmarks, often outperforming SCIP and narrowing the gap to imitation-based strong branching. The results indicate that a principled MDP formulation unlocks the potential of RL in B&B, with practical impact on solving larger and more diverse MILPs, though generalization remains challenging and distribution shift is an area for future work.
Abstract
Mixed-Integer Linear Programming (MILP) is a powerful framework used to address a wide range of NP-hard combinatorial optimization problems, often solved by Branch and Bound (B&B). A key factor influencing the performance of B&B solvers is the variable selection heuristic governing branching decisions. Recent contributions have sought to adapt reinforcement learning (RL) algorithms to the B&B setting to learn optimal branching policies, through Markov Decision Processes (MDP) inspired formulations, and ad hoc convergence theorems and algorithms. In this work, we introduce BBMDP, a principled vanilla MDP formulation for variable selection in B&B, allowing to leverage a broad range of RL algorithms for the purpose of learning optimal B\&B heuristics. Computational experiments validate our model empirically, as our branching agent outperforms prior state-of-the-art RL agents on four standard MILP benchmarks.
