AIMar 17

Domain-Independent Dynamic Programming with Constraint Propagation

arXiv:2603.1664812.91 citationsh-index: 39
Predicted impact top 95% in AI · last 90 daysOriginality Incremental advance
AI Analysis

This work addresses combinatorial optimization problems by combining DP and CP, offering a model-based integration that is incremental in nature.

The paper tackled the problem of bridging dynamic programming (DP) and constraint programming (CP) by integrating constraint propagation into DP to prune states and transitions, resulting in significantly reduced state expansions and solving more instances for Single Machine Scheduling and RCPSP, with similar improvements for tightly constrained TSPTW instances.

There are two prevalent model-based paradigms for combinatorial problems: 1) state-based representations, such as heuristic search, dynamic programming (DP), and decision diagrams, and 2) constraint and domain-based representations, such as constraint programming (CP), (mixed-)integer programming, and Boolean satisfiability. In this paper, we bridge the gap between the DP and CP paradigms by integrating constraint propagation into DP, enabling a DP solver to prune states and transitions using constraint propagation. To this end, we implement constraint propagation using a general-purpose CP solver in the Domain-Independent Dynamic Programming framework and evaluate using heuristic search on three combinatorial optimisation problems: Single Machine Scheduling with Time Windows, the Resource Constrained Project Scheduling Problem (RCPSP), and the Travelling Salesperson Problem with Time Windows (TSPTW). Our evaluation shows that constraint propagation significantly reduces the number of state expansions, causing our approach to solve more instances than a DP solver for Single Machine Scheduling and RCPSP, and showing similar improvements for tightly constrained TSPTW instances. The runtime performance indicates that the benefits of propagation outweigh the overhead for constrained instances, but that further work into reducing propagation overhead could improve performance further. Our work is a key step in understanding the value of constraint propagation in DP solvers, providing a model-based approach to integrating DP and CP.

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes