Component Specifications & Causal Topology
graph TD
subgraph UserSpace [Simulation & User Interface]
Dashboard[Obs Dashboard HTML/JS]
Sim[Simulation Script]
end
subgraph LedgerSpace [State & Network Layer]
NodeA[HodgeNode A]
NodeB[HodgeNode B]
Server[SSE Telemetry Server]
end
subgraph GeometricSpace [Geometric Foundations]
SSC[SimplicialStateComplex]
Operators[DEC Operators: d0, d1, delta]
Reconciler[Geodesic Reconciler]
Solver[Conjugate Gradient Solver]
end
Sim --> NodeA
Sim --> NodeB
NodeA <-->|Sync Merge| NodeB
NodeA -->|Post Telemetry| Server
Server -->|SSE event-stream| Dashboard
NodeA & NodeB --> SSC
NodeA --> Reconciler
Reconciler --> Operators
Reconciler --> Solver
complex.py)Tracks causal event histories as a directed simplicial complex:
operators.py)Computes the linear operators on \(k\)-cochains:
solver.py)A pure-standard-library Conjugate Gradient solver optimized for sparse symmetric positive semi-definite (SPSD) systems. It solves \(A x = b\) for Laplacians where \(A\) has a non-trivial null space, running to a convergence tolerance of \(10^{-6}\) squared residual norm.
reconciler.py)Performs the Hodge Decomposition:
genesis.