Automated Discovery of Branching Rules with Optimal Complexity for the Maximum Independent Set Problem
Xuan-Zhao Gao, Yi-Jia Wang, Pan Zhang, Jin-Guo Liu
TL;DR
This work automates the discovery of optimal branching rules for the Maximum Independent Set problem within a branch-and-reduce framework. By formulating local subgraph constraints as reduced $\alpha$-tensors and translating rule selection into a weighted minimum set covering problem, it yields provably optimal branching factors $\gamma$ and significantly fewer branches than expert-designed rules. The methodology relies on integer programming (with LP relaxations as fast approximations) to generate on-the-fly rules, and demonstrates state-of-the-art performance on 3-regular graphs with average complexities around $O(1.0441^n)$. The approach is general, extensible to other combinatorial problems, and supported by an open-source Julia implementation.
Abstract
The branching algorithm is a fundamental technique for designing fast exponential-time algorithms to solve combinatorial optimization problems exactly. It divides the entire solution space into independent search branches using predetermined branching rules, and ignores the search on suboptimal branches to reduce the time complexity. The complexity of a branching algorithm is primarily determined by the branching rules it employs, which are often designed by human experts. In this paper, we show how to automate this process with a focus on the maximum independent set problem. The main contribution is an algorithm that efficiently generate optimal branching rules for a given sub-graph with tens of vertices. Its efficiency enables us to generate the branching rules on-the-fly, which is provably optimal and significantly reduces the number of branches compared to existing methods that rely on expert-designed branching rules. Numerical experiment on 3-regular graphs shows an average complexity of O(1.0441^n) can be achieved, better than any previous methods.
