exoroute-cross-venue-order-.../exoroute/__init__.py

20 lines
562 B
Python

"""ExoRoute Core (skeleton)
This package provides a minimal seed for the ExoRoute DSL primitives and a
harmless, importable entry point to bootstrap integration with existing
CatOpt-like ecosystems.
"""
from .dsl import LocalProblem, SharedVariables, PlanDelta, DualVariables, PrivacyBudget, AuditLog, GraphOfContractsRegistry, GraphOfContractsRegistryEntry
__all__ = [
"LocalProblem",
"SharedVariables",
"PlanDelta",
"DualVariables",
"PrivacyBudget",
"AuditLog",
"GraphOfContractsRegistry",
"GraphOfContractsRegistryEntry",
]