"""Regulatory Optimization — the Roadmap / Management renderer of the Capability Delta Engine. Ranks the OPEN Capability Delta (from RS-005) by regulatory leverage: which measure closes the most regulatory requirements at once. Answers the Geschäftsführer question "Womit anfangen?". Pure, deterministic, computed-not-stored. Consumes the RS-005 delta (acyclic dependency); the delta engine stays hermetic. No new corpus, no new meta-model class (freeze v1.0). """ from __future__ import annotations from .engine import regulatory_leverage, roadmap_from_delta, select_within_budget from .schemas import BudgetPlan, OptimizationPlan, RankedMeasure __all__ = [ "regulatory_leverage", "select_within_budget", "roadmap_from_delta", "OptimizationPlan", "RankedMeasure", "BudgetPlan", ]