DiBS: Diffusion-Informed Branch Selection
Quick Answer
DiBS introduces a diffusion model-guided approach for Sudoku solving, enhancing branch selection in symbolic solvers.
Quick Take
DiBS introduces a diffusion model-guided approach for Sudoku solving, enhancing branch selection in symbolic solvers. It significantly reduces search costs on the Royle 17-clue benchmark, outperforming traditional heuristics in nodes and backtracks. The method ensures completeness while leveraging learned global guidance for challenging instances.
Key Points
- DiBS combines symbolic solvers with diffusion models for improved Sudoku solving.
- The approach significantly reduces search costs, especially in backtracks and long-tail percentiles.
- Experiments show DiBS outperforms strong heuristic baselines on challenging Sudoku instances.
- The method maintains completeness while providing effective global guidance.
- All related code is publicly available on GitHub.
Article Content
From source RSS / original summaryarXiv:2606. 06518v1 Announce Type: new Abstract: Sudoku is a representative constraint satisfaction problem that requires global structural reasoning under strict discrete constraints. The existing works of solving Sudoku mainly focus on two dominant approaches, i. e. , traditional heuristic and deep learning solver. However, they suffer from two complementary limitations: learning-based solvers lack hard correctness guarantees, while complete symbolic solvers are still prone to long-tail search.
To address these shortcomings, we propose a novel diffusion model-guided approach, termed as DiBS, for the branch selection search process. Specifically, DiBS keeps the symbolic solver complete and uses the diffusion model as a branch-ordering guide. The core method is ranking candidate values under the current partial assignment and lightweight consistency signal. Furthermore, we provide an in-depth theoretical proof to reveal how it works and why it works.
Experiments on the challenging Royle 17-clue Sudoku benchmark show that our DiBS substantially reduces search cost relative to strong heuristic baselines, especially in nodes, backtracks, and long-tail percentiles. Besides, these results confirm that learned global guidance is effective on hard instances where branch-order mistakes are most expensive. All codes are available at https://github. com/shanxierdan/DiBS.
Reader Mode unavailable (could not extract clean content).
Want this in your inbox every morning?
Daily brief at your local 8am — bilingual EN/中文, free.
More from arXiv cs.AI
See more →The Sim-to-Real Gap of Foundation Model Agents: A Unified MDP Perspective
This paper addresses the sim-to-real gap for foundation model agents by framing it within a Markov Decision Process (MDP) structure. It advocates for established solutions like domain randomization to enhance agent robustness, aiming to create standardized benchmarks for reliable real-world applications.