Optimal Neighborhood Exploration for Dynamic Independent Sets
Jannick Borowitz, Ernestine Großmann, Christian Schulz
TL;DR
The paper tackles the fully dynamic maximum weight and cardinality independent set problems on large-scale graphs. It introduces Optimum Neighborhood Exploration (ONE), which builds small induced subgraphs around updates and solves them to optimality with the KaMIS branch-and-reduce framework, enabling high-quality updates with tunable subproblem size parameters ($d$ and $\nu_{\max}$). By combining fast greedy updates (DegGreedy) with expensive but targeted local optimizations (DynamicONE) and several pruning strategies (pinching) and rare-update schemes, the method achieves strong empirical performance across diverse dynamic benchmarks, often outperforming state-of-the-art dynamic solvers. The approach demonstrates practical scalability and offers a flexible trade-off between running time and solution quality, with clear pathways for extending to other dynamic graph problems and parallelization.
Abstract
A dynamic graph algorithm is a data structure that supports edge insertions, deletions, and specific problem queries. While extensive research exists on dynamic algorithms for graph problems solvable in polynomial time, most of these algorithms have not been implemented or empirically evaluated. This work addresses the NP-complete maximum weight and cardinality independent set problems in a dynamic setting, applicable to areas like dynamic map-labeling and vehicle routing. Real-world instances can be vast, with millions of vertices and edges, making it challenging to find near-optimal solutions quickly. Exact solvers can find optimal solutions but have exponential worst-case runtimes. Conversely, heuristic algorithms use local search techniques to improve solutions by optimizing vertices. In this work, we introduce a novel local search technique called optimal neighborhood exploration. This technique creates independent subproblems that are solved to optimality, leading to improved overall solutions. Through numerous experiments, we assess the effectiveness of our approach and compare it with other state-of-the-art dynamic solvers. Our algorithm features a parameter, the subproblem size, that balances running time and solution quality. With this parameter, our configuration matches state-of-the-art performance for the cardinality independent set problem. By increasing the parameter, we significantly enhance solution quality.
