Registry
Versioned model registry
Each model implements a common adapter interface, so the site can compare versions without rewriting the interface. Revisions create versions; they never rewrite history.
Reproduction Lab
AT-0activeWeighted relational graph with the toy transform d_ij = -L ln(R_ij) and shortest-weighted-path separation. Exists to validate the software, not to make claims.
Implements
- Deterministic graph construction (chain, ring, lattice, small-world, random)
- Shortest weighted path (dense Dijkstra) and geodesic extraction
- Numerical sensitivity matrix ∂D/∂R_ij by central difference
- Metric audit: non-negativity, symmetry, triangle inequality, identity of indiscernibles
- Seeded reproducibility: same seed + version ⇒ same result
Not modelled
- Time, Lorentzian signature, light cones (AT-4)
- Stress-energy and energy conditions (AT-5)
- Manifold reconstruction from relational states (AT-3)
- Any mapping to measurable physical quantities
Version history
v0.1.0 · dijkstra-log-coupling-1.0.0 · current
- Initial public reproduction engine.
- Constraint engine returns NOT MODELED for causality and energy conditions.
- Result contract frozen: physicalClaim is hard-coded false.
Relational Perturbation
AT-1in-designMeasures the response ΔD to a controlled ΔR, with robustness under bounded noise and null-model comparison.
Implements
- Single-edge and multi-edge perturbation sweeps (prototype, runs on the AT-0 core)
- Noise-ensemble robustness statistics
Not modelled
- Dynamics: nothing here evolves in time
- Cost of a perturbation in any physical currency
Version history
No released versions.
Adjacency Transition Search
AT-2in-designSearches for regimes where a small ‖ΔR‖ produces a large |ΔD| — path-switch thresholds and nonlinear response.
Implements
- Greedy small-norm search over couplings (prototype, runs on the AT-0 core)
- Path-switch threshold detection
Not modelled
- Whether any such transition corresponds to anything physical
Version history
No released versions.
Geometry Reconstruction
AT-3not-startedTests whether relational states reconstruct recognisable metric structure rather than arbitrary graph distances.
Implements
—
Not modelled
- Everything. Not started.
Version history
No released versions.
Causal Geometry
AT-4not-startedIntroduces time, Lorentzian structure, light cones and signalling constraints.
Implements
—
Not modelled
- Everything. Not started.
Version history
No released versions.
Energy Correspondence
AT-5not-startedEstimates stress-energy and energy-condition implications of candidate geometric changes.
Implements
—
Not modelled
- Everything. Not started.
Version history
No released versions.
Adapter contract
{
modelId, modelVersion, algorithmVersion, experimentId,
inputs: { topology, nodeCount, baseCoupling, noise,
lengthScale, source, target, seed, overrides },
outputs: { effectiveDistance, path, pathEdges, hops,
graph, sensitivity },
metrics: { effectiveDistance, hops, edgeCount, nodeCount,
meanDegree, meanCoupling, maxSensitivity, runtimeMs },
constraintResults: [ { id, name, status, detail } ],
physicalClaim: false,
warnings, randomSeed, timestamp
}