mirror of
https://github.com/SHOGGOTH-SECTOR/sica-fondt.git
synced 2026-07-31 08:06:26 +00:00
Dial down sim speed for longer horizons (monthly/annual/5yr)
Hourly–weekly: full window in ≤1 wall-second (3600:1 to 604800:1). Monthly: daily ticks, 30s wall for full window. Annual: weekly ticks, ~52s wall. 5-year: monthly ticks, ~60s wall. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
78eaa01a70
commit
e40210f570
@ -26,14 +26,14 @@ different runtime suited to its math.
|
|||||||
behaviors emerge from the sim's mathematical model; ingest live data from Data Feeds (M2)
|
behaviors emerge from the sim's mathematical model; ingest live data from Data Feeds (M2)
|
||||||
for calibration; respond to Trader queries with bounded predictions; produce outputs with
|
for calibration; respond to Trader queries with bounded predictions; produce outputs with
|
||||||
**explicit upper/lower bounds** on every prediction value.
|
**explicit upper/lower bounds** on every prediction value.
|
||||||
| Horizon | Window | Speed (1s wall =) | Ratio |
|
| Horizon | Window | Speed (1s wall =) | Ratio | Wall time for window |
|
||||||
|---------|--------|-------------------|-------|
|
|---------|--------|-------------------|-------|---------------------|
|
||||||
| Tick–hourly | Next 1–60 min | 1h sim | 3,600:1 |
|
| Tick–hourly | Next 1–60 min | 1h sim | 3,600:1 | <1s |
|
||||||
| Daily | Next 24h | 1d sim | 86,400:1 (3600×24) |
|
| Daily | Next 24h | 1d sim | 86,400:1 | 1s |
|
||||||
| Weekly | Next 7d | 1w sim | 604,800:1 (3600×24×7) |
|
| Weekly | Next 7d | 1w sim | 604,800:1 | 1s |
|
||||||
| Monthly | Next 30d | 1mo sim | 2,592,000:1 (3600×24×30) |
|
| Monthly | Next 30d | 1d sim | 86,400:1 | 30s |
|
||||||
| Annual | Next 365d | 1yr sim | 31,536,000:1 (3600×24×365) |
|
| Annual | Next 365d | 1w sim | 604,800:1 | ~52s |
|
||||||
| 5-year | Next 1825d | 5yr sim | 157,680,000:1 |
|
| 5-year | Next 1825d | 1mo sim | 2,592,000:1 | ~60s |
|
||||||
- **Does-not:** trade (Traders/Marketplace do); make decisions for traders (it informs, they
|
- **Does-not:** trade (Traders/Marketplace do); make decisions for traders (it informs, they
|
||||||
decide); enforce laws (Marketplace does); supervise behavior (Conductor/SAE do); skip ticks;
|
decide); enforce laws (Marketplace does); supervise behavior (Conductor/SAE do); skip ticks;
|
||||||
run slower than 360:1.
|
run slower than 360:1.
|
||||||
@ -61,9 +61,10 @@ different runtime suited to its math.
|
|||||||
- **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** — they advance every tick, never
|
||||||
skip. Each time horizon runs at its own speed: **1 wall-second = 1 full window** of that
|
skip. Each time horizon runs at its own rated speed (see §4 table). Hourly through weekly
|
||||||
horizon's sim time. The slowest (hourly) is 3,600:1; daily is 86,400:1; up to 5-year at
|
cover their full window in ≤ 1 wall-second; monthly through 5-year dial down to coarser
|
||||||
~158M:1. No horizon may run slower than its rated speed.
|
ticks (daily/weekly/monthly steps) and take 30–60 wall-seconds for a full window pass.
|
||||||
|
No horizon may run slower than its rated speed.
|
||||||
- **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.
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user