The Commonplace
Home Papers Evidence Explore Trends Syntheses Digests References Docs 🎲 Workforce Futures
← Papers
Direction, evidence grade, and study type are AI-generated labels (gpt-5-mini), not human-verified. Syntheses are LLM-written. "Tensions" are machine-detected candidates, not confirmed contradictions. A research-acceleration tool, not peer review. How this is built →

A new differentiable DRL policy that enforces hard combinatorial inventory constraints cuts simulated supply‑chain costs by up to 9.8% on literature benchmarks and by about 3.2% on an ASML industry instance, outperforming echelon base‑stock and rolling‑horizon stochastic programs.

Hard Constraints, Smooth Gradients: Learning Feasible Inventory Policies via Differentiable Projection
Patrick Helm, Jan-Niklas Doerr, Joren Gijsbrechts, Stefan Minner · August 03, 2026
arxiv theoretical n/a evidence 7/10 relevance Full text usable extracted full text Source PDF

Structured author observations

Linked only from stored provider relations; the raw author line above is never matched by name.

Arxiv

Latest observation:

  1. Patrick Helm unresolved corpus identity
  2. Jan-Niklas Doerr unresolved corpus identity
  3. Joren Gijsbrechts unresolved corpus identity
  4. Stefan Minner unresolved corpus identity

Semantic Scholar

Latest observation:

  1. Patrick Helm provider ID
  2. John Doerr provider ID
  3. Joren Gijsbrechts provider ID
  4. Stefan Minner provider ID
The authors introduce a differentiable policy that enforces interdependent hard action constraints via a QP projection and a dual-informed integer mapping, yielding strong theoretical guarantees and simulation cost reductions versus echelon base-stock and rolling-horizon stochastic programming (up to ~9.8% on literature benchmarks and ~3.2% on an ASML industry instance).

Citation observations

Cumulative provider counts captured on specific dates; providers are never combined.

Many operational problems are constrained sequential decision processes with large, combinatorial action spaces and interdependent feasibility constraints. Mixed-integer linear programs (MILPs) handle such constraints flexibly but scale poorly in stochastic environments. Deep reinforcement learning (DRL) promises scalable decision rules, but existing methods either penalize constraints rather than enforce them, or rely on feasibility mechanisms that break down once constraints interact. We bridge this gap by embedding a differentiable convex optimization module inside the policy: a neural network proposes continuous action targets, a quadratic program projects them onto the relaxed feasible set, and a dual-informed integer mapping restores integrality while preserving feasibility. Given a differentiable simulator, the policy trains end to end from sampled trajectories using pathwise gradients, while handling hard constraints with similar flexibility to MILPs. We show that our feasibility enforcement has bounded error relative to an exact integer projection and ensures the entire feasible action space is reachable. We apply the method to multi-echelon production-inventory planning under shared resource and material constraints. Our policy attains an average optimality gap below 1% on small instances. It further outperforms state-of-the-art echelon base-stock policies by up to 9.75% and a rolling-horizon multi-stage stochastic program by at least 7.7% in larger networks. On an industry-scale case study from ASML, it reduces average cost by up to 3.22% relative to the best-known benchmark policy. The savings are largest where planning is hardest: in tightly capacitated systems with high demand variability. More broadly, our work shows that DRL can deliver economically significant savings in sequential decision problems with interdependent hard constraints, which are widespread in practice.

Summary

Main Finding

The paper introduces a differentiable policy architecture that enforces hard, interdependent action constraints for sequential decision problems (e.g., capacitated multi-echelon inventory planning). It combines a neural-network decision rule, a convex quadratic-program (QP) projection onto the continuous feasible set, and a dual-informed integer mapping with straight-through surrogate gradients. The approach trains end-to-end via pathwise gradients (given a differentiable simulator), attains near-optimal performance on small instances (<1% optimality gap), and yields economically meaningful cost reductions versus state-of-the-art heuristics and rolling-horizon stochastic programming on larger and industry-scale benchmarks (up to ~9.8% and 3.22% improvements reported).

Key Points

  • Problem class: finite-horizon MDPs with combinatorial (integer) actions and interdependent linear constraints split into state-dependent constraints Ax ≤ b_t and static constraints Cx ≤ k; continuous relaxation is A_rel(s_t).
  • Policy architecture (three modules):
  • Neural network outputs continuous action targets z (differentiable decision rule).
  • QP projection maps z to the continuous feasible set A_rel(s_t). A QP (strongly convex projection) is used to ensure unique, smooth optimizer and stable implicit gradients. Projection sensitivities are shown to be nonexpansive (helping gradient stability).
  • Dual-informed integer mapping converts projected continuous actions to feasible integer actions using the projection’s dual variables to prioritize rounding; surrogate straight-through estimator (STE) supplies backward gradients.
  • Theoretical guarantees:
    • Bounded error relative to exact integer projection (both in distance and decision outcome).
    • Completeness: every feasible integer action is reachable from a positive-measure set of target actions (avoids unreachable frontier actions that naive rounding can cause).
    • Frontier condition: when the target overshoots in all coordinates the mapping returns an action that is limited in at least one coordinate (allowing pushing against binding constraints).
  • Training: end-to-end via pathwise (deterministic) gradients when a differentiable simulator is available (they build on HDPO-style low-variance gradient signals).
  • Empirical results:
    • Small 3-item instances: average optimality gap < 1% without instance-specific tuning.
    • 10-item benchmark (Tempelmeier & Derstroff style): up to 9.75% cost savings vs state-of-the-art echelon base-stock policies; at least 7.7% better than rolling-horizon multi-stage stochastic programming.
    • ASML industry-scale 14-item benchmark: average cost reduced by up to 3.22% vs best-known forecast-based echelon base-stock policy; realized-cost distribution is first-order stochastically dominated.
    • Ablations: removing projection sensitivities causes training divergence; replacing dual-informed mapping with naive floor rounding increases cost up to 15.8%.
  • Where benefits concentrate: tightly capacitated networks, high demand variability, and shared resources across echelons — precisely the regimes where MILP/heuristics struggle most.
  • Practical design advantages: constraints are enforced via a projection module specified by the model (formulation-driven), so adding/changing constraints does not require reengineering the learning architecture. Duals provide interpretable prioritization signals.

Data & Methods

  • Formal setting: finite-horizon constrained MDP with integer actions x_t ∈ N_0^n satisfying Ax_t ≤ b_t (state-dependent) and Cx_t ≤ k (static); transitions s_{t+1} = Γ(s_t, x_t, ξ_t). The continuous relaxation A_rel(s_t) replaces integrality with nonnegativity.
  • Projection choice: quadratic-program projection (minimize squared distance to target z subject to linear inequalities of the continuous relaxation). QP chosen over LP to avoid degeneracy and discontinuous optimizer behavior; implicit differentiation of KKT conditions yields analytical gradients.
  • Integer mapping: uses dual variables from the projection to rank/prioritize rounding into integer decisions that satisfy constraints; guarantees on bounded deviation from exact integer projection and reachability of integer feasible space.
  • Surrogate gradients: straight-through estimator (STE) for passing gradients through the discrete mapping during backpropagation.
  • Training protocol: pathwise gradients through differentiable simulator (HDPO-style), sampling trajectories to compute low-variance gradient estimates; no per-state MILP solving during training/deployment (only projection QPs + integer mapping).
  • Scalability: exploits decomposition/locality of constraints common in inventory networks (resource constraints localized to machines/facilities/BOMs), allowing parallelizable smaller QPs and tractable integer mapping for larger instances.
  • Benchmarks and evaluation: small instances with known optima, literature benchmark networks (10-item), and a realistic industry-scale ASML instance (14-item) under multiple demand scenarios; baselines include optimized echelon base-stock policies (forecast-based) and rolling-horizon multi-stage stochastic programming.

Implications for AI Economics

  • Operational cost impact: Demonstrates that DRL methods can yield nontrivial, economically meaningful savings (several percent reductions at industry scale; larger gains in harder settings). Even modest percentage improvements can translate into substantial dollar savings across large operations.
  • Replacing/augmenting MILP in stochastic settings: The approach offers a tractable alternative to per-period MILPs or expensive rolling-horizon stochastic programs in stochastic, constrained settings where MILPs scale poorly. It keeps the benefits of formulation-driven constraint specification while enabling scalable, data-driven policies.
  • Where to prioritize adoption: strongest value when constraints are tight, demand is volatile, and resources are shared — exactly the complex environments where heuristic policies perform poorly and manual tuning is costly.
  • Interpretability & diagnostics: Use of projection duals provides economically interpretable priority signals (e.g., marginal value of resources), which can aid managerial understanding and trust compared with black-box policies.
  • Practical caveats & adoption constraints:
    • Differentiable simulator requirement: pathwise gradient training needs a simulator that is differentiable w.r.t. actions and (often) states. Building or adapting simulators may be nontrivial in practice; if unavailable, alternative gradient estimators or surrogate approaches would be needed.
    • Approximateness of integer mapping: the integer mapping is proven to be bounded-close to exact integer projection and complete, but it is not exact optimization; thus, worst-case performance guarantees are weaker than exact MILP optima.
    • Training complexity: while deployment requires only QPs and rounding heuristics, training can still be compute-intensive and data-hungry; practitioners should assess compute vs benefit trade-offs relative to existing planning tools.
    • Robustness and generalization: as with learned policies broadly, out-of-distribution demand or structural changes may degrade performance; combining learned policies with fallback rule-based safety/feasibility checks is prudent.
  • Research and policy implications: This work shows that differentiable optimization layers permit enforcement of hard operational constraints within DRL, suggesting a broader role for such hybrid architectures in economic applications where constraints and combinatorics matter (inventory, workforce scheduling, energy systems, financial regulations). Economists and operations researchers should consider integrating dual information from learned policies into managerial decision-support and using such methods to explore counterfactual operational investments (e.g., where increasing capacity yields largest marginal returns according to the learned duals).

Suggested next steps for practitioners/economists: - Pilot on a representative segment where capacity is tight and demand stochasticity is high. - Ensure or develop a differentiable simulator; otherwise explore variants using policy gradients with constraint-aware surrogates. - Monitor worst-case constraint satisfaction during rollout and keep conservative safeguards for high-stakes operations. - Leverage projection duals as operational KPIs for capacity planning and as inputs to hybrid human–AI workflows.

Assessment

Paper Typetheoretical Evidence Strengthn/a — Although the paper demonstrates substantial simulated cost improvements and provides theoretical bounds, evidence is based on simulations and industry-style benchmarks rather than randomized or real-world deployment; therefore it cannot be judged as strong causal empirical evidence for real-world economic impact. Methods Rigorhigh — The paper provides formal theoretical guarantees for the projection and integer-mapping modules, derives sensitivity properties, uses pathwise gradients for low-variance training, compares against strong literature and industry benchmarks (e.g., Tempelmeier & Derstroff instances and the ASML Research Challenge), and reports ablations demonstrating module importance. SampleSimulated finite-horizon MDPs for capacitated multi-echelon production–inventory planning under stochastic demand and lead times: (i) small 3-item instances with known optimal policies; (ii) 10-item instances based on Tempelmeier and Derstroff (1996) literature benchmark; (iii) a realistic 14-item industry-scale instance from the 2025 ASML Research Challenge evaluated under two demand settings. Training uses a differentiable simulator and pathwise gradients; comparisons are against state-of-the-art echelon base-stock policies, rolling-horizon multi-stage stochastic programming, and ablated variants of the proposed method. Themesproductivity innovation GeneralizabilityResults are simulation-based (including an industry benchmark) rather than from field/deployed experiments, so real-world transfer costs and model mismatch are not fully quantified., Method requires a differentiable simulator (pathwise gradients) — it may not apply when transitions or costs are non-differentiable or when only historical logged data is available., Formulation assumes linear constraints and a downward-closed continuous relaxation; methods may not directly extend to nonlinear constraints or non-convex feasible regions., Integer mapping and QP projection rely on structure (e.g., local/resource-decomposable constraints and strong convexity); scaling behavior for extremely large combinatorial action spaces or highly coupled global constraints is not fully characterized., Benchmarks focus on multi-echelon inventory problems; applicability to other operational domains requires adaptation of constraint structure and may change performance gains.

Claims (10)

ClaimDirectionOutcomeConfidence & EvidenceDetails
The proposed policy architecture produces feasible discrete production decisions under interdependent action constraints without requiring per-state mixed-integer optimization. Organizational Efficiency positive Feasibility of discrete production decisions and computational policy implementation
Reading fidelity high
Study strength medium
not reported
0.12
The proposed integer mapping is complete: every feasible integer action is selected for a positive-measure set of target actions, making every feasible action reachable by the policy. Task Allocation positive Reachability of feasible integer actions
Reading fidelity high
Study strength medium
not reported
0.12
On small three-item instances, the learned policy achieves an average optimality gap below 1%. Organizational Efficiency positive Average optimality gap
Reading fidelity high
Study strength high
below 1%
0.2
On 10-item inventory-network instances, the proposed policy achieves cost savings of up to 9.75% relative to the state-of-the-art echelon base-stock policy. Firm Productivity negative Inventory-planning cost
Reading fidelity high
Study strength high
up to 9.75% cost savings
0.2
On larger inventory networks, the proposed policy consistently outperforms a rolling-horizon multi-stage stochastic program by at least 7.7%. Firm Productivity negative Inventory-planning cost relative to the stochastic-program benchmark
Reading fidelity high
Study strength high
at least 7.7% cost improvement
0.2
In the ASML industry-scale case study, the proposed policy reduces average cost by up to 3.22% relative to the best-known benchmark policy. Firm Productivity negative Average realized inventory-planning cost
Reading fidelity high
Study strength medium
up to 3.22% reduction in average cost
0.12
Across two ASML demand settings, the proposed policy reduces average cost by 3.22% and 2.54% relative to the best-known benchmark policy. Firm Productivity negative Average realized inventory-planning cost
Reading fidelity high
Study strength medium
3.22% and 2.54% reductions in average cost
0.12
The proposed policy first-order stochastically dominates the benchmark in the distribution of realized costs in the ASML evaluation. Firm Productivity negative Distribution of realized inventory-planning costs
Reading fidelity high
Study strength medium
not reported
0.12
Replacing the dual-informed integer mapping with naive floor rounding increases cost by up to 15.8%. Firm Productivity negative Inventory-planning cost
Reading fidelity high
Study strength medium
up to 15.8% cost increase
0.12
Ignoring the projection sensitivities causes training divergence. Organizational Efficiency negative Training stability and convergence
Reading fidelity high
Study strength medium
not reported
0.12

Notes