25 lines
738 B
Python
25 lines
738 B
Python
"""GravityWeave package - lightweight federation primitives for orbital resource optimization.
|
|
|
|
This package contains minimal, well-tested building blocks intended as a foundation
|
|
for the GravityWeave ecosystem: a Graph-of-Contracts registry, a small CRDT-style
|
|
PlanDelta, a governance ledger (tamper-evident append-only log), two toy adapters,
|
|
and an ADMM-lite solver stub.
|
|
"""
|
|
|
|
from .registry import Registry
|
|
from .plan_delta import PlanDelta, ORSet, LWWRegister
|
|
from .ledger import GovernanceLedger
|
|
from .adapters import sat_planner, relay_module
|
|
from .solver import ADMMNode
|
|
|
|
__all__ = [
|
|
"Registry",
|
|
"PlanDelta",
|
|
"ORSet",
|
|
"LWWRegister",
|
|
"GovernanceLedger",
|
|
"sat_planner",
|
|
"relay_module",
|
|
"ADMMNode",
|
|
]
|