Simplify L3 sim speed: 90:1 base, coarser+faster for longer horizons

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Claude 2026-07-13 23:23:51 +00:00
parent 4744690694
commit 97e49ffa8e
No known key found for this signature in database

View File

@ -60,10 +60,9 @@ different runtime suited to its math.
current state; they don't trigger computation. current state; they don't trigger computation.
- **L2 (C5):** every prediction output includes **explicit upper and lower bounds** — no - **L2 (C5):** every prediction output includes **explicit upper and lower bounds** — no
unbounded point estimates. Uncertainty is a first-class value, not an afterthought. unbounded point estimates. Uncertainty is a first-class value, not an afterthought.
- **L3 (C5):** all sims are **tick-advanced and continuous** — they advance every tick, never - **L3 (C5):** all sims are **tick-advanced and continuous** — fine-grained ticks (RTS-style).
skip. Base speed **90:1** (1 wall-second = 90 sim-seconds) at the finest tick resolution. Base speed **90:1** (1s wall = 90s sim). Longer horizons run at higher velocity with coarser
Longer horizons use **coarser ticks** (larger time steps) so they cover proportionally more steps and update less frequently. No horizon runs slower than 90:1.
sim-time per wall-second. 90:1 is the floor; no horizon runs slower.
- **L4 (C4):** sims are **read-only from traders' perspective** — a query never mutates sim - **L4 (C4):** sims are **read-only from traders' perspective** — a query never mutates sim
state. Calibration happens only from Data Feeds (M2). state. Calibration happens only from Data Feeds (M2).
- **L5 (C4):** each sim type is **independent** — failure in one sim does not cascade to others. - **L5 (C4):** each sim type is **independent** — failure in one sim does not cascade to others.